~ubuntu-branches/ubuntu/breezy/muse/breezy

« back to all changes in this revision

Viewing changes to icons.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Kobras
  • Date: 2004-02-07 15:18:22 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040207151822-es27xxkzbcxkebjm
Tags: 0.6.3-1
* New upstream version.
* Added patches:
  + [10_alsa_init_fix] New, from upstream CVS.
    Initialize direction variable when setting Alsa parameters.
  + [10_canvas_translation_fix] New, from upstream CVS.
    Do not translate tooltips twice in canvas popup.
  + [10_checkbox_fix] New, from upstream CVS.
    Use proper set/test methods on metronome checkboxes.
  + [10_html_doc_cleanup] New.
    Fix links and HTML errors in documentation.
  + [20_allow_system_timer] New.
    The new upstream version fails by default if the real-time clock
    could not be accessed (usually the case when not running suid-root).
    This patch reverts the old behaviour of falling back to the more
    inaccurate system timer.
* Updated patches:
  + [11_PIC_fixes_fixup] Rediffed.
* Removed patches:
  + [20_no_atomic_asm] Merged upstream.
* debian/compat: Splice out debhelper compatibility level from rules file.
* debian/control: Build-depend on latest jack release by default.
  Closes: #228788
* debian/control: Bump standards version.
* debian/control: Use auto-generated debconf dependency via misc:Depends.
* debian/control: Minor tweaks to the long description.
* debian/control: Tighten fluidsynth build dependency to sane version.
* debian/muse.doc-base: New. Register HTML documentation with doc-base.
* debian/templates: Tiny rewording, and typo fix.
* debian/templates, debian/po/*: Switch to po-debconf for translations.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
//=========================================================
2
2
//  MusE
3
3
//  Linux Music Editor
4
 
//  $Id: icons.cpp,v 1.1 2002/01/30 14:54:03 muse Exp $
 
4
//  $Id: icons.cpp,v 1.1.1.1 2003/10/29 10:05:12 wschweer Exp $
5
5
//
6
6
//  (C) Copyright 1999/2000 Werner Schweer (ws@seh.de)
7
7
//=========================================================
84
84
#include "xpm/editcutS.xpm"
85
85
#include "xpm/editcopyS.xpm"
86
86
#include "xpm/editpasteS.xpm"
 
87
#include "xpm/editmute.xpm"
 
88
#include "xpm/editmuteS.xpm"
87
89
 
88
90
#include "xpm/scoreS.xpm"
89
91
#include "xpm/score.xpm"
90
92
#include "xpm/speaker.xpm"
91
93
#include "xpm/buttondown.xpm"
92
94
#include "xpm/configure.xpm"
 
95
#include "xpm/panic.xpm"
 
96
 
 
97
#include "xpm/recordonbutton.xpm"
 
98
#include "xpm/recordoffbutton.xpm"
 
99
#include "xpm/solobutton.xpm"
 
100
#include "xpm/newmutebutton.xpm"
 
101
#include "xpm/exit.xpm"
 
102
 
 
103
#include "xpm/reddot.xpm"
 
104
#include "xpm/greendot.xpm"
 
105
#include "xpm/darkreddot.xpm"
 
106
#include "xpm/darkgreendot.xpm"
 
107
#include "xpm/bluedot.xpm"
 
108
#include "xpm/graydot.xpm"
 
109
#include "xpm/off.xpm"
 
110
 
 
111
QPixmap* exitIcon;
 
112
QPixmap* recordonIcon;
 
113
QPixmap* recordoffIcon;
 
114
QPixmap* newmuteIcon;
 
115
QPixmap* soloIcon;
93
116
 
94
117
QPixmap* pointerIcon;
95
118
QPixmap* pencilIcon;
161
184
QPixmap* buttondownIcon;
162
185
QPixmap* configureIcon;
163
186
 
 
187
QPixmap* editmuteIcon;
 
188
QPixmap* editmuteSIcon;
 
189
QPixmap* panicIcon;
 
190
 
164
191
QIconSet* pianoIconSet;
165
192
QIconSet* scoreIconSet;
166
193
QIconSet* editcutIconSet;
 
194
QIconSet* editmuteIconSet;
167
195
QIconSet* editcopyIconSet;
168
196
QIconSet* editpasteIconSet;
169
197
 
 
198
QPixmap* greendotIcon;
 
199
QPixmap* darkgreendotIcon;
 
200
QPixmap* reddotIcon;
 
201
QPixmap* darkreddotIcon;
 
202
QPixmap* graydotIcon;
 
203
QPixmap* bluedotIcon;
 
204
QPixmap* offIcon;
 
205
 
170
206
//---------------------------------------------------------
171
207
//   initIcons
172
208
//---------------------------------------------------------
245
281
      buttondownIcon = new QPixmap(buttondown_xpm);
246
282
      configureIcon  = new QPixmap(configure_xpm);
247
283
 
 
284
      editmuteIcon  = new QPixmap(editmute_xpm);
 
285
      editmuteSIcon = new QPixmap(editmuteS_xpm);
 
286
      panicIcon  = new QPixmap(panic_xpm);
 
287
 
248
288
      pianoIconSet     = new QIconSet(QPixmap(pianoS_xpm), QPixmap(piano_xpm));
249
289
      scoreIconSet     = new QIconSet(QPixmap(scoreS_xpm), QPixmap(score_xpm));
250
290
      editcutIconSet   = new QIconSet(QPixmap(editcutS_xpm), QPixmap(editcut_xpm));
251
291
      editcopyIconSet  = new QIconSet(QPixmap(editcopyS_xpm), QPixmap(editcopy_xpm));
252
292
      editpasteIconSet = new QIconSet(QPixmap(editpasteS_xpm), QPixmap(editpaste_xpm));
 
293
      editmuteIconSet  = new QIconSet(QPixmap(editmuteS_xpm), QPixmap(editmute_xpm));
 
294
 
 
295
      exitIcon       = new QPixmap(exit_xpm);
 
296
      recordonIcon   = new QPixmap(recordonbutton_xpm);
 
297
      recordoffIcon  = new QPixmap(recordoffbutton_xpm);
 
298
      newmuteIcon       = new QPixmap(newmutebutton_xpm);
 
299
      soloIcon          = new QPixmap(solobutton_xpm);
 
300
 
 
301
      greendotIcon      = new QPixmap(greendot_xpm);
 
302
      darkgreendotIcon  = new QPixmap(darkgreendot_xpm);
 
303
      reddotIcon        = new QPixmap(reddot_xpm);
 
304
      bluedotIcon       = new QPixmap(bluedot_xpm);
 
305
      graydotIcon       = new QPixmap(graydot_xpm);
 
306
      darkreddotIcon    = new QPixmap(darkreddot_xpm);
 
307
      offIcon           = new QPixmap(off_xpm);
253
308
      }
254
309