~ubuntu-branches/ubuntu/oneiric/valkyrie/oneiric

« back to all changes in this revision

Viewing changes to valkyrie/tool_views/massif_view.h

  • Committer: Bazaar Package Importer
  • Author(s): Hai Zaar
  • Date: 2009-05-06 14:48:00 UTC
  • Revision ID: james.westby@ubuntu.com-20090506144800-vw617m4d4qa2pam3
Tags: upstream-1.4.0
ImportĀ upstreamĀ versionĀ 1.4.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* ---------------------------------------------------------------------
 
2
 * Definition of MassifView                                massif_view.h
 
3
 * Massif's personal window
 
4
 * ---------------------------------------------------------------------
 
5
 * This file is part of Valkyrie, a front-end for Valgrind
 
6
 * Copyright (C) 2000-2008, OpenWorks LLP <info@open-works.co.uk>
 
7
 * This program is released under the terms of the GNU GPL v.2
 
8
 * See the file COPYING for the full license details.
 
9
 */
 
10
 
 
11
#ifndef __MASSIF_VIEW_H
 
12
#define __MASSIF_VIEW_H
 
13
 
 
14
 
 
15
#include "tool_view.h"
 
16
 
 
17
/* class MassifView ---------------------------------------------------- */
 
18
class Massif;
 
19
class MassifView : public ToolView
 
20
{
 
21
   Q_OBJECT
 
22
public:
 
23
   MassifView( QWidget* parent, const char* name );
 
24
   ~MassifView();
 
25
 
 
26
   /* called by massif: set state for buttons; set cursor state */
 
27
   void setState( bool run );
 
28
 
 
29
public slots:
 
30
   void toggleToolbarLabels( bool );
 
31
};
 
32
 
 
33
 
 
34
 
 
35
#endif