📄 cachegrind_view.cpp
字号:
/* --------------------------------------------------------------------- * Implementation of CachegrindView cachegrind_view.cpp * Cachegrind's personal window * --------------------------------------------------------------------- * 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. */#include "cachegrind_view.h"#include <qcursor.h>#include <qlayout.h>#include <qlabel.h>/* class CachegrindView ------------------------------------------------ */CachegrindView::~CachegrindView() { }CachegrindView::CachegrindView( QWidget* parent, const char* name ) : ToolView( parent, name ){ mkToolBar(); QVBoxLayout* vLayout = new QVBoxLayout( central ); /* create the listview */ QLabel* lbl = new QLabel( "Cachegrind", central, "cachegrind label" ); lbl->setAlignment( AlignCenter ); vLayout->addWidget( lbl );}/* called by cachegrind: set state for buttons; set cursor state */void CachegrindView::setState( bool run ){ if ( run ) { /* startup */ setCursor( QCursor(Qt::WaitCursor) ); } else { /* finished */ unsetCursor(); }}/* slot: connected to MainWindow::toggleToolbarLabels(). called when user toggles 'show-butt-text' in Options page */void CachegrindView::toggleToolbarLabels( bool /*state*/ ){ }void CachegrindView::mkToolBar( ){}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -