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

« back to all changes in this revision

Viewing changes to kscd/mgconfdlg.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
 
 
2
 
/*
3
 
 *
4
 
 * kscd -- A simple CD player for the KDE project           
5
 
 *
6
 
 * $Id: mgconfdlg.h,v 1.7 2000/05/26 21:45:16 dfoerste Exp $
7
 
 * 
8
 
 * Copyright (C) 1997 Bernd Johannes Wuebben wuebben@math.cornell.edu
9
 
 * Copyright (C) 2000 Dirk F�rsterling <milliByte@gmx.de>
10
 
 * 
11
 
 * This library is free software; you can redistribute it and/or
12
 
 * modify it under the terms of the GNU Library General Public
13
 
 * License as published by the Free Software Foundation; either
14
 
 * version 2 of the License, or (at your option) any later version.
15
 
 *
16
 
 * This library is distributed in the hope that it will be useful,
17
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19
 
 * Library General Public License for more details.
20
 
 *
21
 
 * You should have received a copy of the GNU Library General Public
22
 
 * License along with this program; if not, write to the Free
23
 
 * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24
 
 *
25
 
 */
26
 
 
27
 
 
28
 
#ifndef _MGCONFIG_DLG_H_
29
 
#define _MGCONFIG_DLG_H_
30
 
 
31
 
#include <qgroupbox.h> 
32
 
#include <qdialog.h>
33
 
#include <qlineedit.h>
34
 
#include <qpushbutton.h>
35
 
#include <qpainter.h>
36
 
#include <qlabel.h>
37
 
#include <qframe.h>
38
 
#include <qcheckbox.h>
39
 
#include <qlineedit.h>
40
 
#include <qradiobutton.h>
41
 
#include <qbutton.h> 
42
 
#include <qbuttongroup.h> 
43
 
 
44
 
#include "kscd.h"
45
 
 
46
 
 
47
 
class QSpinBox;
48
 
 
49
 
class MGConfigDlg : public QDialog 
50
 
{
51
 
  
52
 
Q_OBJECT
53
 
  
54
 
public:
55
 
 
56
 
  MGConfigDlg(QWidget *parent, struct mgconfigstruct * data,const char *name);
57
 
  ~MGConfigDlg() {}
58
 
 
59
 
 
60
 
  struct mgconfigstruct * getData();
61
 
 
62
 
private slots:
63
 
 
64
 
  void help();
65
 
  void brightness_changed(int value);
66
 
  void width_changed(const QString &);
67
 
  void height_changed(const QString &);
68
 
  void pointsAreDiamonds_clicked(bool flag);
69
 
  //  void fadeMode_changed();
70
 
  //  void starSize_changed();
71
 
 
72
 
  
73
 
private:
74
 
 
75
 
  struct mgconfigstruct mgconfigdata;
76
 
 
77
 
  QGroupBox *box;
78
 
  
79
 
  QLabel *label1;
80
 
  QSpinBox *bspin;
81
 
 
82
 
  QLabel *label2;
83
 
  QLineEdit *height_edit;
84
 
 
85
 
  QLabel *label3;
86
 
  QLineEdit *width_edit;
87
 
 
88
 
  QCheckBox *pointsAreDiamondsCB;
89
 
  
90
 
 
91
 
  QPushButton *helpbutton;
92
 
};
93
 
#endif
94
 
 
95
 
 
96
 
 
97
 
 
98
 
 
99
 
 
100
 
 
101
 
 
102
 
 
103
 
 
104
 
 
105