~ubuntu-branches/ubuntu/quantal/muse/quantal

« back to all changes in this revision

Viewing changes to muse/widgets/fontsel.h

  • Committer: Bazaar Package Importer
  • Author(s): Alessio Treglia
  • Date: 2011-08-12 11:16:41 UTC
  • mto: (1.1.9) (10.1.6 sid)
  • mto: This revision was merged to the branch mainline in revision 26.
  • Revision ID: james.westby@ubuntu.com-20110812111641-72iatqb9jomjejko
ImportĀ upstreamĀ versionĀ 2.0~beta2

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
//=========================================================
2
 
//  MusE
3
 
//  Linux Music Editor
4
 
//    $Id: fontsel.h,v 1.1.1.1 2003/10/27 18:54:29 wschweer Exp $
5
 
//  (C) Copyright 1999 Werner Schweer (ws@seh.de)
6
 
//=========================================================
7
 
 
8
 
#ifndef __FONTSEL_H__
9
 
#define __FONTSEL_H__
10
 
 
11
 
#include <qwidget.h>
12
 
#include "song.h"
13
 
 
14
 
class QFont;
15
 
class QSpinBox;
16
 
class QToolButton;
17
 
class QComboBox;
18
 
 
19
 
//---------------------------------------------------------
20
 
//   FontSel
21
 
//---------------------------------------------------------
22
 
 
23
 
class FontSel : public QWidget {
24
 
      QFont _font;
25
 
      QSpinBox* s1;
26
 
      QToolButton* fcb1;
27
 
      QToolButton* fcb2;
28
 
      QToolButton* fcb3;
29
 
      QComboBox* cb;
30
 
 
31
 
      Q_OBJECT
32
 
 
33
 
      void setFont();
34
 
 
35
 
   private slots:
36
 
      void fontSelect();
37
 
 
38
 
   public:
39
 
      FontSel(QWidget* parent, const QFont&, const QString&);
40
 
      const QFont& font();
41
 
      };
42
 
 
43
 
 
44
 
#endif
45