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

« back to all changes in this revision

Viewing changes to valkyrie/options/valkyrie_options_page.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 ValkyrieOptionsPage              valkyrie_options_page.h
 
3
 * Subclass of OptionsPage to hold valkyrie-specific options | flags
 
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 __VALKYRIE_OPTIONS_PAGE_H
 
12
#define __VALKYRIE_OPTIONS_PAGE_H
 
13
 
 
14
#include "options_page.h"
 
15
 
 
16
 
 
17
class ValkyrieOptionsPage : public OptionsPage
 
18
{
 
19
   Q_OBJECT
 
20
public:
 
21
   ValkyrieOptionsPage( QWidget* parent, VkObject* obj );
 
22
   void applyOption( int optId );
 
23
 
 
24
private slots:
 
25
   void chooseGenFont();
 
26
   void chooseToolFont();
 
27
   void getEditor();
 
28
   void getBinary();
 
29
   void getBrowser();
 
30
   void getDfltLogDir();
 
31
   void getWorkingDir();
 
32
   void getVgExec();
 
33
};
 
34
 
 
35
 
 
36
#endif