aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop/desktop-plugins/calendar/CalendarPlugin.h
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2015-10-20 14:15:05 -0400
committerKen Moore <moorekou@gmail.com>2015-10-20 14:15:05 -0400
commit20aa87623b3795d8bc21174598da33ce637e993f (patch)
tree7923e74b6de7eb1ea9036ae4a657cc07048e4d02 /lumina-desktop/desktop-plugins/calendar/CalendarPlugin.h
parentOk, *Now* the desktop plugin resizing routine works properly. Also try to fix... (diff)
downloadlumina-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.h6
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()){
bgstack15