importrpm.h
来自「About: Paco (pacKAGE oRGANIZER) is a si」· C头文件 代码 · 共 62 行
H
62 行
//=======================================================================// ImportRPM.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_IMPORT_RPM_H#define GPACO_IMPORT_RPM_H#include <gtkmm/window.h>#include <gtkmm/progressbar.h>#include <gtkmm/textview.h>#include "util.h"namespace Gpaco{class ImportRPM : public Gtk::Window{ public: static void instance(); virtual bool on_delete_event(GdkEventAny*); private: ImportRPM(); ~ImportRPM(); std::string mRpm2paco; Gtk::ProgressBar mProgressBar; Button mButtonImport; Button mButtonClose; Button mButtonStop; Gtk::TextView mTextView; Glib::RefPtr<Gtk::TextBuffer> mpTextBuffer; Glib::RefPtr<Gtk::TextTag> mpTextTag; bool mOptOverwrite; bool mOptStripRelease; bool mOptSync; bool mStop; static ImportRPM* spImportRPM; void onSwitchOverwrite(); void onSwitchStripRelease(); void onSwitchSync(); void onClose(); void onImport(); void onStop(); void output(Glib::ustring const&);};} // namespace Gpaco#endif // GPACO_IMPORT_RPM_H
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?