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

« back to all changes in this revision

Viewing changes to muse/gui.h

  • Committer: Package Import Robot
  • Author(s): Alessio Treglia
  • Date: 2012-07-18 16:07:06 UTC
  • mto: (10.1.11 sid) (1.1.12)
  • mto: This revision was merged to the branch mainline in revision 31.
  • Revision ID: package-import@ubuntu.com-20120718160706-yc6332ishfcq7b7g
ImportĀ upstreamĀ versionĀ 2.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
//      central point of tweaking the gui
30
30
//
31
31
 
32
 
/*
33
 
// size of horizontal and vertical splitter
34
 
//
35
 
static const int splitWidth = 6;
36
 
 
37
 
// arranger:
38
 
static const int trackRowHeight = 24;
39
 
static const int minTrackHeight = trackRowHeight + splitWidth + 1;
40
 
static const int defaultTrackHeight = minTrackHeight;
41
 
static const int infoHeight     = 20;
42
 
static const int infoWidth      = 140;
43
 
static const int trackSeparator = 1;
44
 
static const int yTrackOffset   = -2; // -4;
45
 
 
46
 
//  mixer:
47
 
static const int STRIP_WIDTH  = 60;
48
 
static const int LABEL_HEIGHT = 20;
49
 
static const int BUTTON_HEIGHT = STRIP_WIDTH / 3;
50
 
static const int ENTRY_HEIGHT = 17;
51
 
*/
52
 
 
53
32
static const int ICON_WIDTH = 18;
54
33
static const QSize ICON_SIZE(ICON_WIDTH, ICON_WIDTH);
55
34