aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop/desktop-plugins/calendar/CalendarPlugin.h
blob: 796bc42d19823bd288a866f6a67fa93f67ac84a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
//===========================================
//  Lumina-DE source code
//  Copyright (c) 2014, Ken Moore
//  Available under the 3-clause BSD license
//  See the LICENSE file for full details
//===========================================
//  This class is a quick sample desktop plugin
//===========================================
#ifndef _LUMINA_DESKTOP_DESKTOP_PLUGIN_CALENDAR_H
#define _LUMINA_DESKTOP_DESKTOP_PLUGIN_CALENDAR_H

#include <QCalendarWidget>
#include <QVBoxLayout>
#include "../LDPlugin.h"

class CalendarPlugin : public LDPlugin{
	Q_OBJECT
public:
	CalendarPlugin(QWidget* parent, QString ID) : LDPlugin(parent, ID){
	  this->setLayout( new QVBoxLayout());
	    this->layout()->setContentsMargins(0,0,0,0);
	  cal = new QCalendarWidget(this);
	  this->layout()->addWidget(cal);
	  this->setInitialSize( cal->sizeHint().width(), cal->sizeHint().height() );
	}
	
	~CalendarPlugin(){}
	
private:
	QCalendarWidget *cal;
};
#endif
bgstack15