preferences.h
来自「About: Paco (pacKAGE oRGANIZER) is a si」· C头文件 代码 · 共 48 行
H
48 行
//=======================================================================// Preferences.h//-----------------------------------------------------------------------// This file is part of the package paco// Copyright (C) 2004-2007 David Rosal <david.3r@gmail.com>// For more information visit http://paco.sourceforge.net//=======================================================================#ifndef GPACO_PREFERENCES_H#define GPACO_PREFERENCES_H#include <gtkmm/dialog.h>#include <gtkmm/radiobutton.h>#include <gtkmm/checkbutton.h>namespace Gpaco {class Preferences : public Gtk::Dialog{ public: static void instance(); private: Preferences(); ~Preferences(); static Preferences* spPreferences; Gtk::CheckButton mButtonHour; Gtk::CheckButton mButtonTips; Gtk::RadioButton mButtonHuman; Gtk::RadioButton mButtonBytes; Gtk::RadioButton mButtonKilobytes; Gtk::RadioButton mButtonMegabytes; void response(int id); void ok();};} // namespace Gpaco#endif // GPACO_PREFERENCES_H
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?