summaryrefslogtreecommitdiffabout
path: root/korganizer
authorzautrix <zautrix>2005-03-21 14:46:33 (UTC)
committer zautrix <zautrix>2005-03-21 14:46:33 (UTC)
commit86c420a68008e4430bd769ebdecdfa430ba552f5 (patch) (unidiff)
tree76a1e6485169f5601c82754dc9d8971702b5c1b1 /korganizer
parent6e5a0c6cff04fff115e63b62537c5274dc7a5564 (diff)
downloadkdepimpi-86c420a68008e4430bd769ebdecdfa430ba552f5.zip
kdepimpi-86c420a68008e4430bd769ebdecdfa430ba552f5.tar.gz
kdepimpi-86c420a68008e4430bd769ebdecdfa430ba552f5.tar.bz2
init fix
Diffstat (limited to 'korganizer') (more/less context) (ignore whitespace changes)
-rw-r--r--korganizer/calendarview.cpp86
1 files changed, 43 insertions, 43 deletions
diff --git a/korganizer/calendarview.cpp b/korganizer/calendarview.cpp
index 96ced08..90b36ac 100644
--- a/korganizer/calendarview.cpp
+++ b/korganizer/calendarview.cpp
@@ -1824,4 +1824,47 @@ void CalendarView::readSettings()
1824 mTodoList->restoreLayout(config,QString("Todo Layout")); 1824 mTodoList->restoreLayout(config,QString("Todo Layout"));
1825 readFilterSettings(config); 1825 readFilterSettings(config);
1826
1827#ifdef DESKTOP_VERSION
1828 config->setGroup("WidgetLayout");
1829 QStringList list;
1830 list = config->readListEntry("MainLayout");
1831 int x,y,w,h;
1832 if ( ! list.isEmpty() ) {
1833 x = list[0].toInt();
1834 y = list[1].toInt();
1835 w = list[2].toInt();
1836 h = list[3].toInt();
1837 topLevelWidget()->setGeometry(x,y,w,h);
1838
1839 } else {
1840 topLevelWidget()->setGeometry( 40 ,40 , 640, 440);
1841 }
1842 list = config->readListEntry("EditEventLayout");
1843 if ( ! list.isEmpty() ) {
1844 x = list[0].toInt();
1845 y = list[1].toInt();
1846 w = list[2].toInt();
1847 h = list[3].toInt();
1848 mEventEditor->setGeometry(x,y,w,h);
1849
1850 }
1851 list = config->readListEntry("EditTodoLayout");
1852 if ( ! list.isEmpty() ) {
1853 x = list[0].toInt();
1854 y = list[1].toInt();
1855 w = list[2].toInt();
1856 h = list[3].toInt();
1857 mTodoEditor->setGeometry(x,y,w,h);
1858
1859 }
1860 list = config->readListEntry("ViewerLayout");
1861 if ( ! list.isEmpty() ) {
1862 x = list[0].toInt();
1863 y = list[1].toInt();
1864 w = list[2].toInt();
1865 h = list[3].toInt();
1866 getEventViewerDialog()->setGeometry(x,y,w,h);
1867 }
1868#endif
1826 config->setGroup( "Views" ); 1869 config->setGroup( "Views" );
1827 int dateCount = config->readNumEntry( "ShownDatesCount", 7 ); 1870 int dateCount = config->readNumEntry( "ShownDatesCount", 7 );
@@ -1899,47 +1942,4 @@ void CalendarView::readSettings()
1899 globalFlagBlockAgenda = 2; 1942 globalFlagBlockAgenda = 2;
1900 mViewManager->readSettings( config ); 1943 mViewManager->readSettings( config );
1901#ifdef DESKTOP_VERSION
1902 config->setGroup("WidgetLayout");
1903 QStringList list;
1904 list = config->readListEntry("MainLayout");
1905 int x,y,w,h;
1906 if ( ! list.isEmpty() ) {
1907 x = list[0].toInt();
1908 y = list[1].toInt();
1909 w = list[2].toInt();
1910 h = list[3].toInt();
1911 topLevelWidget()->setGeometry(x,y,w,h);
1912
1913 } else {
1914 topLevelWidget()->setGeometry( 40 ,40 , 640, 440);
1915 }
1916 list = config->readListEntry("EditEventLayout");
1917 if ( ! list.isEmpty() ) {
1918 x = list[0].toInt();
1919 y = list[1].toInt();
1920 w = list[2].toInt();
1921 h = list[3].toInt();
1922 mEventEditor->setGeometry(x,y,w,h);
1923
1924 }
1925 list = config->readListEntry("EditTodoLayout");
1926 if ( ! list.isEmpty() ) {
1927 x = list[0].toInt();
1928 y = list[1].toInt();
1929 w = list[2].toInt();
1930 h = list[3].toInt();
1931 mTodoEditor->setGeometry(x,y,w,h);
1932
1933 }
1934 list = config->readListEntry("ViewerLayout");
1935 if ( ! list.isEmpty() ) {
1936 x = list[0].toInt();
1937 y = list[1].toInt();
1938 w = list[2].toInt();
1939 h = list[3].toInt();
1940 getEventViewerDialog()->setGeometry(x,y,w,h);
1941 }
1942#endif
1943
1944} 1944}
1945 1945