📄 valgrind_options_page.h
字号:
/* ---------------------------------------------------------------------- * Definition of ValgrindOptionsPage valgrind_options_page.h * Subclass of OptionsPage to hold valgrind-specific options | flags * ---------------------------------------------------------------------- * 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 __VALGRIND_OPTIONS_PAGE_H#define __VALGRIND_OPTIONS_PAGE_H#include "options_page.h"#include <qstringlist.h>class ValgrindOptionsPage : public OptionsPage{ Q_OBJECTpublic: ValgrindOptionsPage( QWidget* parent, VkObject* obj ); void applyOption( int optId ); void init();private slots: void suppDirsChanged(); void updateSuppsAvail(); void updateSuppsSel(const QString&); void getDbBin(); void dummy();private: /* hold on to these, so don't have to rescan dirs all the time */ QStringList m_allAvailSuppFiles;};#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -