~ubuntu-branches/ubuntu/wily/muse/wily-proposed

« back to all changes in this revision

Viewing changes to muse/widgets/lcombo.h

  • Committer: Package Import Robot
  • Author(s): Alessio Treglia
  • Date: 2011-12-03 17:12:54 UTC
  • mfrom: (1.1.8)
  • Revision ID: package-import@ubuntu.com-20111203171254-28b1j4lpb46r5jtl
Tags: 2.0~rc1-1
* New upstream RC release.
* Refresh patches, remove those patches not needed anymore.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
//  Linux Music Editor
4
4
//    $Id: lcombo.h,v 1.1.1.1.2.3 2009/07/01 22:14:56 spamatica Exp $
5
5
//  (C) Copyright 2000 Werner Schweer (ws@seh.de)
 
6
//
 
7
//  This program is free software; you can redistribute it and/or
 
8
//  modify it under the terms of the GNU General Public License
 
9
//  as published by the Free Software Foundation; version 2 of
 
10
//  the License, or (at your option) any later version.
 
11
//
 
12
//  This program is distributed in the hope that it will be useful,
 
13
//  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
//  GNU General Public License for more details.
 
16
//
 
17
//  You should have received a copy of the GNU General Public License
 
18
//  along with this program; if not, write to the Free Software
 
19
//  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 
20
//
6
21
//=========================================================
7
22
 
8
23
#ifndef __LCOMBO_H__
14
29
 
15
30
class QString;
16
31
 
 
32
namespace MusEGui {
17
33
 
18
34
//---------------------------------------------------------
19
35
//   LabelCombo
20
36
//---------------------------------------------------------
21
37
 
22
38
class LabelCombo : public QWidget {
 
39
      Q_OBJECT
23
40
      QComboBox* box;
24
 
      Q_OBJECT
 
41
      
25
42
 
26
43
   signals:
27
44
      void activated(int);
40
57
      void setFocusPolicy ( Qt::FocusPolicy fp ) { box->setFocusPolicy(fp); }
41
58
      };
42
59
 
 
60
} // namespace MusEGui
 
61
 
43
62
#endif