aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop/LDesktop.h
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2015-07-08 02:37:09 -0400
committerKen Moore <moorekou@gmail.com>2015-07-08 02:37:09 -0400
commit7e2c562e45e52fc151be9af1bebc3ad1b03b995c (patch)
treed24c2ea7660124b01a3f45704002b9d7f80cee50 /lumina-desktop/LDesktop.h
parentFix the initial brightness detection for FreeBSD on new users/systems. (diff)
downloadlumina-7e2c562e45e52fc151be9af1bebc3ad1b03b995c.tar.gz
lumina-7e2c562e45e52fc151be9af1bebc3ad1b03b995c.tar.bz2
lumina-7e2c562e45e52fc151be9af1bebc3ad1b03b995c.zip
Update how the desktop icons (applaunchers or desktopview) are created/arranged initially. Now the desktopview should be oriented the proper way, and the applauncher icons should be the proper size (although they are still not being placed in non-overlapping locations yet).
Diffstat (limited to 'lumina-desktop/LDesktop.h')
-rw-r--r--lumina-desktop/LDesktop.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/lumina-desktop/LDesktop.h b/lumina-desktop/LDesktop.h
index f949d861..482f1401 100644
--- a/lumina-desktop/LDesktop.h
+++ b/lumina-desktop/LDesktop.h
@@ -72,8 +72,10 @@ private:
QList<LDPlugin*> PLUGINS;
QString CBG; //current background
QRect globalWorkRect;
- void CreateDesktopPluginContainer(LDPlugin*);
+ LDPluginContainer* CreateDesktopPluginContainer(LDPlugin*);
+ QPoint findNewPluginLocation(QRegion avail, QSize winsize);
+
private slots:
void InitDesktop();
void SettingsChanged();
bgstack15