diff options
author | Ken Moore <moorekou@gmail.com> | 2015-10-20 14:15:05 -0400 |
---|---|---|
committer | Ken Moore <moorekou@gmail.com> | 2015-10-20 14:15:05 -0400 |
commit | 20aa87623b3795d8bc21174598da33ce637e993f (patch) | |
tree | 7923e74b6de7eb1ea9036ae4a657cc07048e4d02 /lumina-desktop/desktop-plugins/calendar/CalendarPlugin.h | |
parent | Ok, *Now* the desktop plugin resizing routine works properly. Also try to fix... (diff) | |
download | lumina-20aa87623b3795d8bc21174598da33ce637e993f.tar.gz lumina-20aa87623b3795d8bc21174598da33ce637e993f.tar.bz2 lumina-20aa87623b3795d8bc21174598da33ce637e993f.zip |
Ok, Now the desktop plugin canvas has truly been converted to a grid-space coordinate system. Also setup the desktop plugins to assign a default size for themselves in grid-space rather than pixels (better accounts for screen scaling and such on high-resolution monitors).
Diffstat (limited to 'lumina-desktop/desktop-plugins/calendar/CalendarPlugin.h')
-rw-r--r-- | lumina-desktop/desktop-plugins/calendar/CalendarPlugin.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lumina-desktop/desktop-plugins/calendar/CalendarPlugin.h b/lumina-desktop/desktop-plugins/calendar/CalendarPlugin.h index 133a3af6..b3a6a8d7 100644 --- a/lumina-desktop/desktop-plugins/calendar/CalendarPlugin.h +++ b/lumina-desktop/desktop-plugins/calendar/CalendarPlugin.h @@ -28,7 +28,6 @@ public: cal = new QCalendarWidget(this); cal->setSelectionMode(QCalendarWidget::NoSelection); this->layout()->addWidget(cal); - this->setInitialSize( cal->sizeHint().width(), cal->sizeHint().height() ); timer = new QTimer(this); timer->setInterval(1800000); //30 minute refresh timer timer->start(); @@ -38,6 +37,11 @@ public: ~CalendarPlugin(){ timer->stop(); } + virtual QSize defaultPluginSize(){ + // The returned QSize is in grid points (typically 100 or 200 pixels square) + return QSize(3,2); + } + private slots: void updateDate(){ if(cal->selectedDate() != QDate::currentDate()){ |