author | zautrix <zautrix> | 2005-10-29 11:38:11 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-10-29 11:38:11 (UTC) |
commit | 126ae577622d43e17d8aeb1e66cafd9d16298cd2 (patch) (unidiff) | |
tree | 702518971b9b216237db27e4185a860319514bcd | |
parent | 456482e70b06246d1ce3981fa196462e65a2dcd8 (diff) | |
download | kdepimpi-126ae577622d43e17d8aeb1e66cafd9d16298cd2.zip kdepimpi-126ae577622d43e17d8aeb1e66cafd9d16298cd2.tar.gz kdepimpi-126ae577622d43e17d8aeb1e66cafd9d16298cd2.tar.bz2 |
fixxx
-rw-r--r-- | desktop/rpm/kdepim_rpm | 2 | ||||
-rw-r--r-- | kalarmd/simplealarmdaemonimpl.cpp | 17 | ||||
-rw-r--r-- | version | 2 |
3 files changed, 14 insertions, 7 deletions
diff --git a/desktop/rpm/kdepim_rpm b/desktop/rpm/kdepim_rpm index 9076943..bf19aca 100644 --- a/desktop/rpm/kdepim_rpm +++ b/desktop/rpm/kdepim_rpm | |||
@@ -1,11 +1,11 @@ | |||
1 | Summary: A collection of PIM programs | 1 | Summary: A collection of PIM programs |
2 | Name: KDE-Pim-Pi | 2 | Name: KDE-Pim-Pi |
3 | Version: 2.2.6 | 3 | Version: 2.2.7 |
4 | Release: SuSE_9.2 | 4 | Release: SuSE_9.2 |
5 | Copyright:GPL | 5 | Copyright:GPL |
6 | Group: Productivity/Pim | 6 | Group: Productivity/Pim |
7 | Source:http://sourceforge.net/projects/kdepimpi/ | 7 | Source:http://sourceforge.net/projects/kdepimpi/ |
8 | URL:http://sourceforge.net/projects/kdepimpi/ | 8 | URL:http://sourceforge.net/projects/kdepimpi/ |
9 | Packager: zautrix | 9 | Packager: zautrix |
10 | 10 | ||
11 | %description | 11 | %description |
diff --git a/kalarmd/simplealarmdaemonimpl.cpp b/kalarmd/simplealarmdaemonimpl.cpp index 2742610..aa61fb8 100644 --- a/kalarmd/simplealarmdaemonimpl.cpp +++ b/kalarmd/simplealarmdaemonimpl.cpp | |||
@@ -72,17 +72,24 @@ SimpleAlarmDaemonImpl::SimpleAlarmDaemonImpl( QWidget *parent ) | |||
72 | mSoundPopUp = new QPopupMenu( this ); | 72 | mSoundPopUp = new QPopupMenu( this ); |
73 | mPausePopUp = new QPopupMenu( this ); | 73 | mPausePopUp = new QPopupMenu( this ); |
74 | mFontsizePopup = new QPopupMenu( this ); | 74 | mFontsizePopup = new QPopupMenu( this ); |
75 | mFontsizePopup->insertItem( "10", 10 ); | 75 | mFontsizePopup->insertItem( "10", 10 ); |
76 | mFontsizePopup->insertItem( "12", 12 ); | 76 | mFontsizePopup->insertItem( "12", 12 ); |
77 | mFontsizePopup->insertItem( "14", 14 ); | 77 | mFontsizePopup->insertItem( "14", 14 ); |
78 | mFontsizePopup->insertItem( "16", 16 ); | 78 | mFontsizePopup->insertItem( "16", 16 ); |
79 | mFontsizePopup->insertItem( "18", 18 ); | 79 | mFontsizePopup->insertItem( "18", 18 ); |
80 | mFontsizePopup->insertItem( "20", 20 ); | ||
81 | mFontsizePopup->insertItem( "22", 22 ); | ||
80 | mFontsizePopup->insertItem( "24", 24 ); | 82 | mFontsizePopup->insertItem( "24", 24 ); |
83 | mFontsizePopup->insertItem( "26", 26 ); | ||
84 | mFontsizePopup->insertItem( "28", 28 ); | ||
85 | mFontsizePopup->insertItem( "30", 30 ); | ||
86 | mFontsizePopup->insertItem( "32", 32 ); | ||
87 | mFontsizePopup->insertItem( "36", 36 ); | ||
81 | QPopupMenu* savePopUp = new QPopupMenu( this ); | 88 | QPopupMenu* savePopUp = new QPopupMenu( this ); |
82 | savePopUp->insertItem( "Save", 0 ); | 89 | savePopUp->insertItem( "Save", 0 ); |
83 | savePopUp->insertItem( "Load", 1 ); | 90 | savePopUp->insertItem( "Load", 1 ); |
84 | mSoundPopUp->insertItem( "Buzzer", 0 ); | 91 | mSoundPopUp->insertItem( "Buzzer", 0 ); |
85 | mSoundPopUp->insertItem( "Wav file", 1 ); | 92 | mSoundPopUp->insertItem( "Wav file", 1 ); |
86 | mPausePopUp->insertItem( " 1 sec", 1 ); | 93 | mPausePopUp->insertItem( " 1 sec", 1 ); |
87 | mPausePopUp->insertItem( " 2 sec", 2 ); | 94 | mPausePopUp->insertItem( " 2 sec", 2 ); |
88 | mPausePopUp->insertItem( " 3 sec", 3 ); | 95 | mPausePopUp->insertItem( " 3 sec", 3 ); |
@@ -95,26 +102,26 @@ SimpleAlarmDaemonImpl::SimpleAlarmDaemonImpl( QWidget *parent ) | |||
95 | mSuspendPopUp = new QPopupMenu( this ); | 102 | mSuspendPopUp = new QPopupMenu( this ); |
96 | mSuspendPopUp->insertItem( "Off", 0 ); | 103 | mSuspendPopUp->insertItem( "Off", 0 ); |
97 | mSuspendPopUp->insertItem( " 1x", 1 ); | 104 | mSuspendPopUp->insertItem( " 1x", 1 ); |
98 | mSuspendPopUp->insertItem( " 2x", 2 ); | 105 | mSuspendPopUp->insertItem( " 2x", 2 ); |
99 | mSuspendPopUp->insertItem( " 3x", 3 ); | 106 | mSuspendPopUp->insertItem( " 3x", 3 ); |
100 | mSuspendPopUp->insertItem( " 5x", 5 ); | 107 | mSuspendPopUp->insertItem( " 5x", 5 ); |
101 | mSuspendPopUp->insertItem( "10x", 10 ); | 108 | mSuspendPopUp->insertItem( "10x", 10 ); |
102 | mSuspendPopUp->insertItem( "20x", 20 ); | 109 | mSuspendPopUp->insertItem( "20x", 20 ); |
103 | mSuspendPopUp->insertItem( "30x", 30 ); | 110 | mSuspendPopUp->insertItem( "30x", 30 ); |
111 | mBeepPopUp->insertItem( "Config",savePopUp ); | ||
112 | mBeepPopUp->insertItem( "Replay",mSoundPopUp ); | ||
113 | mBeepPopUp->insertItem( "Font Size",mFontsizePopup ); | ||
104 | mBeepPopUp->insertItem( "Auto suspend",mSuspendPopUp ); | 114 | mBeepPopUp->insertItem( "Auto suspend",mSuspendPopUp ); |
105 | mBeepPopUp->insertItem( "Beep interval",mPausePopUp ); | 115 | mBeepPopUp->insertItem( "Beep interval",mPausePopUp ); |
106 | mBeepPopUp->insertItem( "Replay",mSoundPopUp ); | ||
107 | mBeepPopUp->insertItem( "Font Size",mFontsizePopup ); | ||
108 | mBeepPopUp->insertItem( "Config",savePopUp ); | ||
109 | mBeepPopUp->insertItem( "300", 300 ); | ||
110 | mBeepPopUp->insertItem( "180", 180 ); | 116 | mBeepPopUp->insertItem( "180", 180 ); |
111 | mBeepPopUp->insertItem( "60", 60 ); | 117 | mBeepPopUp->insertItem( "60", 60 ); |
112 | mBeepPopUp->insertItem( "30", 30 ); | 118 | mBeepPopUp->insertItem( "30", 30 ); |
119 | mBeepPopUp->insertItem( "18", 18 ); | ||
113 | mBeepPopUp->insertItem( "10", 10 ); | 120 | mBeepPopUp->insertItem( "10", 10 ); |
114 | mBeepPopUp->insertItem( "3", 3 ); | 121 | mBeepPopUp->insertItem( "3", 3 ); |
115 | mBeepPopUp->insertItem( "1", 1 ); | 122 | mBeepPopUp->insertItem( "1", 1 ); |
116 | mBeepPopUp->insertItem( "Off", 0 ); | 123 | mBeepPopUp->insertItem( "Off", 0 ); |
117 | mBeepPopUp->insertSeparator(); | 124 | mBeepPopUp->insertSeparator(); |
118 | mBeepPopUp->insertItem( "Simulate", 1000 ); | 125 | mBeepPopUp->insertItem( "Simulate", 1000 ); |
119 | mBeepPopUp->setCheckable( true ); | 126 | mBeepPopUp->setCheckable( true ); |
120 | mPopUp->insertSeparator(); | 127 | mPopUp->insertSeparator(); |
@@ -1 +1 @@ | |||
version = "2.2.6"; | version = "2.2.7"; | ||