aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-desktop/panel-plugins/desktopbar/LDeskBar.h
blob: 57d40e4ca59622091e9fcb4eca6c3e108ae43100 (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
//===========================================
//  Lumina-DE source code
//  Copyright (c) 2012, Ken Moore
//  Available under the 3-clause BSD license
//  See the LICENSE file for full details
//===========================================
//  This plugin displays the contents of the user's home directory 
//    as organized within a couple buttons on the panel (apps, dirs, files)
//===========================================
#ifndef _LUMINA_DESKTOP_DESKBAR_H
#define _LUMINA_DESKTOP_DESKBAR_H

// Qt includes
#include <QWidget>
#include <QString>
#include <QAction>
#include <QMenu>
#include <QProcess>
#include <QTimer>
#include <QFileSystemWatcher>
#include <QHBoxLayout>
#include <QIcon>
#include <QToolButton>
#include <QDebug>

// libLumina includes
#include <LuminaXDG.h>

// local includes
//#include "../LTBWidget.h"
#include "../LPPlugin.h"

class LDeskBarPlugin : public LPPlugin{
	Q_OBJECT
public:
	LDeskBarPlugin(QWidget* parent=0, QString id = "desktopbar", bool horizontal=true);
	~LDeskBarPlugin();
	
private:
	//QHBoxLayout *layout;
	QString desktopPath;
	QFileSystemWatcher *watcher;
	//Special toolbuttons and menus
	QToolButton *appB, *fileB, *dirB;
	QMenu *appM, *dirM, *audioM, *videoM, *pictureM, *fileM, *otherM, *docM;
	//QStringList audioFilter, videoFilter, pictureFilter, docsFilter;
	QFileInfoList homefiles;
	QStringList favs;
	QList<QToolButton*> APPLIST;
	QDateTime lastHomeUpdate;

	void initializeDesktop();
	//bool readDesktopFile(QString path, QString &name, QString &iconpath);
	
	QAction* newAction(QString filepath, QString name, QString iconpath);
	QAction* newAction(QString filepath, QString name, QIcon icon);

	//void updateMenu(QMenu* menu, QFileInfoList files, bool trim = true);

	
private slots:
	void ActionTriggered(QAction* act);
	void desktopChanged();
	void updateIcons();

public slots:
	void LocaleChange(){
	  updateIcons();
	  desktopChanged();
	}
	
	void OrientationChange(){
	  QSize sz;
	  if(this->layout()->direction()==QBoxLayout::LeftToRight){
	    this->setSizePolicy(QSizePolicy::Preferred, QSizePolicy::MinimumExpanding);
	    sz = QSize(this->height(), this->height());
	  }else{
	    this->setSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::Preferred);
	    sz = QSize(this->width(), this->width());
	  }
	  appB->setIconSize(sz);
	  fileB->setIconSize(sz);
	  dirB->setIconSize(sz);
	  for(int i=0; i<APPLIST.length(); i++){
	    APPLIST[i]->setIconSize(sz);
	  }
	  this->layout()->update();
	}
};


#endif

bgstack15