📄 preferenceswindow.h
字号:
#ifndef PREFERENCES_WINDOW_H#define PREFERENCES_WINDOW_H#include <libglademm.h>#include <gtkmm.h>class PreferencesWindow : public Gtk::Window{public: PreferencesWindow(BaseObjectType* cobject, const Glib::RefPtr<Gnome::Glade::Xml>& glade_xml); virtual ~PreferencesWindow();protected: virtual bool on_delete_event(GdkEventAny* event); void cancel_button_pressed(); void new_location_selected(Glib::ustring location); void new_color_selected(); void time_to_quit(); Glib::ustring d_location; Gtk::ColorSelection* d_color_sel; Gtk::FontSelection* d_font_sel; Gdk::Color d_color; Gtk::Dialog* d_confirm_close; Gtk::Label* d_warning_label;};#endif // PREFERENCES_WINDOW_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -