📄 preferences.h
字号:
//=======================================================================// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -