help_about.h
来自「Linux平台下的内核及程序调试器」· C头文件 代码 · 共 44 行
H
44 行
/* --------------------------------------------------------------------- * Definition of HelpAbout help_about.h * Small tabbed dialog showing misc. info re license etc. * --------------------------------------------------------------------- * This file is part of Valkyrie, a front-end for Valgrind * Copyright (c) 2000-2006, OpenWorks LLP <info@open-works.co.uk> * This program is released under the terms of the GNU GPL v.2 * See the file LICENSE.GPL for the full license details. */#ifndef __VK_HELP_ABOUT_H#define __VK_HELP_ABOUT_H#include <qdialog.h>#include <qtabwidget.h>#include "hand_book.h" /* VkTextBrowser *//* class HelpAbout ----------------------------------------------------- */class HelpAbout : public QDialog{ Q_OBJECTpublic: enum TabId { ABOUT_VK=0, ABOUT_QT, LICENSE, SUPPORT, NUM_TABS }; HelpAbout( QWidget* parent, TabId tabid ); ~HelpAbout();private slots: void showTab( QWidget* );private: QString title; QTabWidget* tabParent; VkTextBrowser* aboutVk; VkTextBrowser* aboutQt; VkTextBrowser* license; VkTextBrowser* support;};#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?