~ubuntu-branches/ubuntu/breezy/kdemultimedia/breezy

« back to all changes in this revision

Viewing changes to noatun/modules/voiceprint/prefs.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2005-03-24 04:48:58 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 sarge)
  • Revision ID: james.westby@ubuntu.com-20050324044858-8ff88o9jxej6ii3d
Tags: 4:3.4.0-0ubuntu3
Add kubuntu_02_hide_arts_menu_entries.diff to hide artsbuilder and artscontrol k-menu entries

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef PREFS_H
 
2
#define PREFS_H
 
3
 
 
4
#include <qwidget.h>
 
5
#include <noatun/pref.h>
 
6
 
 
7
class KColorButton;
 
8
 
 
9
class Prefs : public CModule
 
10
 
11
Q_OBJECT
 
12
public:
 
13
        Prefs(QObject* parent);
 
14
        virtual void save();
 
15
        virtual void reopen();
 
16
 
 
17
private:
 
18
        KColorButton *mForeground, *mBackground, *mLine;
 
19
};
 
20
 
 
21
#endif
 
22