* song/songEditor: added meterModel and meterDialog (which actually is just a widget) as preparation for time-signature-support - it doesn't actually work yet!

* style.css: improved appearence of menu in general
* splitted source-files for meterModel and meterDialog and added "simple"-mode for meterDialog



git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@1014 0778d3d1-df1d-0410-868b-ea421aaaa00d
This commit is contained in:
Tobias Doerffel
2008-05-24 22:01:31 +00:00
parent 4e239eddb6
commit 7a6fb18e86
12 changed files with 273 additions and 115 deletions

View File

@@ -7,11 +7,48 @@ QMdiArea {
automationEditor {
background-color: rgb(0, 0, 0);
}
/*
captionMenu::item:disabled {
color: white;
background-color: rgb(0, 0, 192);
text-align: center;
font-size:14px;
font-weight:bold;
margin:0px;
padding: 4px 32px 4px 20px;
}*/
QMenu {
border:1px solid black;
background-color: rgb( 192, 192, 192 );
font-size:11px;
}
QMenu::separator {
height: 1px;
background: rgb(128,128,128);
margin-left: 5px;
margin-right: 5px;
}
QMenu::item {
color: black;
padding: 2px 32px 2px 20px;
margin:3px;
}
QMenu::item:selected {
color: white;
font-weight:bold;
background-color: rgba(0, 0, 0, 160);
margin:3px;
}
QMenu::item:disabled {
color: white;
margin:0px;
background-color: rgba(0,0,0,192);
font-size:12px;
font-weight:bold;
padding: 4px 32px 4px 20px;
}
pianoRoll {