ktopwidget.h
来自「PIXIL is a small footprint operating env」· C头文件 代码 · 共 46 行
H
46 行
#ifndef _KTOPWIDGET_H#define _KTOPWIDGET_H#include <ktmainwindow.h>/** * This was top level widget. It inherits KTMainWindow completely now. * You can still use is under this name, if you are so nostalgic. * You shouldn't use this widget it might be removed from libraries * in future. * @see KTMainWindow * @short Old KDE top level window * @author Stephan Kulow (coolo@kde.org), was maintained by Sven Radej (radej@kde.org) */class KTopLevelWidget : public KTMainWindow { Q_OBJECT friend class KToolBar;public: /** * Constructor. */ KTopLevelWidget( const char *name = 0L ); /** * Destructor. */ ~KTopLevelWidget();protected: /** * This is called when the widget is closed. * The default implementation jut calls accepts the event. * This method is only difference from KTMainWindow. Old * applications reimplement closeEvent, new should use * @ref KTMainWindow and reimplement some of special handlers * there. */ virtual void closeEvent ( QCloseEvent *);};#endif//Eh!!!
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?