tictactoe.hh

来自「gfc编程示例 gfc sample of Linux GFC」· HH 代码 · 共 42 行

HH
42
字号
#ifndef TICTACTOE_HH#define TICTACTOE_HH#ifndef GFC_GTK_BOX_HH#include <gfc/gtk/box.hh>#endifnamespace GFC {namespace Gtk {class ToggleButton;}} // namespace GFC/*  Tictactoe */class Tictactoe : public GFC::Gtk::VBox{	Tictactoe(const Tictactoe&);	Tictactoe& operator=(const Tictactoe&);	GFC::Gtk::ToggleButton *buttons[3][3];	void on_toggle(GFC::Gtk::ToggleButton *button);public:// Constructors	Tictactoe();	virtual ~Tictactoe();	// Methods	void clear();// Signals	sigc::signal<void> tictactoe_signal;};#endif // TICTACTOE_HH

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?