![]() |
![]() |
![]() |
|
![]() |
|
15 Fév 2010
Windows Seven : Les premières conclusions
06 Fév 2010
Une semaine d'actu : retour sur l'actualité de la semaine
28 Déc 2009
2000-2010 : Les révolutions qui ont changé le monde
31 Oct 2009
Google Maps Navigation : nouvelle bombe atomique parmi les GPS
24 Juil 2009
HADOPI 2 : Ce qu'on en pense à l'étranger
Google : le maître des noms de domaines
La nouvelle version de GMail en images !
Barème de rémunération pour les disques durs multimédias
TRichEdit : scroll par la molette de la souris
Récupérateur de mots de passe WLM
+9 visiteurs en ligne

Auteur : steckdenis
Catégorie : Système
Niveau : Confirmé
Déposé le : 25 Février 2009 à 20h18
Environnement de bureau révolutionnaire s'appuyant sur Qt.
Logram se veut unique, et n'hésite pas à rompre avec ce qui est déjà connu. Il utilise des technologies phares et propres à Logram, comme les languettes de Panache, et le Menu Rond.
De plus, il reprend les hits du Logiciel Libre. Ainsi, dans Logram, les LIOs sont disponibles (comme les Kios, c'est ce qui permet d'ouvrir un fichier texte (ou image) dans n'importe quel programme KDE, où qu'il se trouve (local, réseau, archive, SSH, etc)).
Logram n'est pas encore avancé, il ne propose qu'un gestionnaire de fenêtre et un gestionnaire de bureau (mais qui sait lire la musique !). Heureusement, vous pouvez lancer dans Logram toutes vos applications préférées.
1 23 45 67 89 1011 1213 1415 1617 1819 2021 2223 2425 2627 2829 3031 3233 3435 3637 3839 4041 4243 4445 4647 4849 5051 5253 5455 5657 5859 6061 6263 6465 6667 | #include <QPluginLoader> #include <QPoint>#include <QDir> #include <DesktopManager.h> #include <DesktopPluginContainer.h>#include <App.h> DesktopManager::DesktopManager(App *mapp) : QObject(mapp) { app = mapp; //Charger le plugin décorateur de bureau QPluginLoader loader(app->cfg->value("Desktop/DecoratorPlugin", "/usr/lib/libparadisesun.so").toString()); QObject *mplugin = loader.instance(); plugin = 0; if (mplugin) { plugin = qobject_cast<IPanacheDesktopDecoratorPlugin *>(mplugin); desktopWidget = plugin->Initialize(); } //TODO: Ajouter un LDirView pour afficher les icônes} void DesktopManager::addPlugin(IPanacheDesktopPlugin *plugin, QString title, QString icon, QString id) { DesktopPluginContainer *mplugin = new DesktopPluginContainer(title, icon, id, plugin, app); QPoint pos = mplugin->pos(); mplugin->setParent(desktopWidget); mplugin->show(); mplugin->move(pos); connect(mplugin, SIGNAL(toTab()), this, SLOT(mtoTab()), Qt::QueuedConnection); connect(mplugin, SIGNAL(closed()), this, SLOT(mclosed()), Qt::QueuedConnection); plugins.append(mplugin); } void DesktopManager::mtoTab(){ DesktopPluginContainer *mplugin = qobject_cast<DesktopPluginContainer *>(sender()); emit toTab(mplugin); plugins.removeOne(mplugin); delete mplugin;} void DesktopManager::mclosed() { DesktopPluginContainer *mplugin = qobject_cast<DesktopPluginContainer *>(sender()); //Supprimer le plugin de la liste à charger QSettings tabInfos(QDir::homePath() + "/.panache/tabs.sav", QSettings::NativeFormat); tabInfos.remove(mplugin->tabName); //Supprimer le la languette et son plugin IPanacheDesktopPlugin *nplugin = mplugin->getPlugin(); nplugin->unlinkParent(); plugins.removeOne(mplugin); delete mplugin;} |
Pour tester Logram, c'est simple, il vous suffit d'être sous Linux (qui marche très bien en machine virtuelle), et de suivre le tuto dans la news à cette adresse : http://www.logram-project.org/node/147.
Projet proposé au Concours de Programmation 2009.
225 fichiers 2,50 Mo
| lbase/ | 0 |
| lbase/Makefile | 288 Octets |
| lbase/workspace/ | 0 |
| lbase/workspace/Makefile | 115 Octets |
| lbase/workspace/ldm/ | 0 |
| lbase/workspace/locom/ | 0 |
| lbase/workspace/bloq/ | 0 |
| lbase/workspace/panache/ | 0 |
| lbase/workspace/panache/desktop/ | 0 |
| lbase/workspace/panache/desktop/StartMenu.cpp | 2,69 Ko |
| lbase/workspace/panache/desktop/TabsManager.cpp | 2,01 Ko |
| lbase/workspace/panache/desktop/DesktopPluginContainer.cpp | 7,74 Ko |
| lbase/workspace/panache/desktop/DesktopManager.cpp | 2,51 Ko |
| lbase/workspace/panache/desktop/TabPluginContainer.cpp | 13,63 Ko |
| lbase/workspace/panache/desktop/App.cpp | 3,17 Ko |
| lbase/workspace/panache/desktop/obj/ | 0 |
| lbase/workspace/panache/desktop/include/ | 0 |
| lbase/workspace/panache/desktop/include/TabsManager.h | 1,30 Ko |
| lbase/workspace/panache/desktop/include/SubTab.h | 1,83 Ko |
| lbase/workspace/panache/desktop/include/StartMenu.h | 1,41 Ko |
| lbase/workspace/panache/desktop/include/DesktopPluginContainer.h | 1,95 Ko |
| lbase/workspace/panache/desktop/include/DesktopManager.h | 1,40 Ko |
| lbase/workspace/panache/desktop/include/App.h | 1,47 Ko |
| lbase/workspace/panache/desktop/include/MenuManager.h | 2,68 Ko |
| lbase/workspace/panache/desktop/include/TabPluginContainer.h | 2,72 Ko |
| lbase/workspace/panache/desktop/main.cpp | 1,12 Ko |
| lbase/workspace/panache/desktop/panache-desktop.pro | 745 Octets |
| lbase/workspace/panache/desktop/SubTab.cpp | 4,19 Ko |
| lbase/workspace/panache/desktop/MenuManager.cpp | 17,04 Ko |
| lbase/workspace/panache/Makefile | 210 Octets |
| lbase/workspace/panache/wm/ | 0 |
| lbase/workspace/panache/wm/Placement.cpp | 5,04 Ko |
| lbase/workspace/panache/wm/panache-wm.pro | 607 Octets |
| lbase/workspace/panache/wm/Manage.cpp | 8,18 Ko |
| lbase/workspace/panache/wm/App.cpp | 7,87 Ko |
| lbase/workspace/panache/wm/obj/ | 0 |
| lbase/workspace/panache/wm/panache-wm.pro.user | 13,70 Ko |
| lbase/workspace/panache/wm/Misc.cpp | 2,46 Ko |
| lbase/workspace/panache/wm/include/ | 0 |
| lbase/workspace/panache/wm/include/App.h | 1,65 Ko |
| lbase/workspace/panache/wm/include/Client.h | 2,42 Ko |
| lbase/workspace/panache/wm/main.cpp | 1,44 Ko |
| lbase/workspace/panache/wm/Decorations.cpp | 4,14 Ko |
| lbase/apps/ | 0 |
| lbase/apps/Makefile | 27 Octets |
| lbase/apps/ugo/ | 0 |
| lbase/apps/netfaster/ | 0 |
| lbase/apps/lide/ | 0 |
| lbase/base/ | 0 |
| lbase/base/Makefile | 28 Octets |
| lbase/base/lsessionmanager/ | 0 |
| lbase/base/lsu/ | 0 |
| lbase/base/setup/ | 0 |
| lartworks/ | 0 |
| lartworks/appsthemes/ | 0 |
| lartworks/appsthemes/firefox/ | 0 |
| lartworks/appsthemes/openeoffice/ | 0 |
| lartworks/Makefile | 184 Octets |
| lartworks/theme/ | 0 |
| lartworks/theme/images/ | 0 |
| lartworks/theme/images/desktopplugin_pixmap.png | 1,31 Ko |
| lartworks/theme/images/titlebar.png | 395 Octets |
| lartworks/theme/images/topleftcorner.png | 387 Octets |
| lartworks/theme/images/tabRight.png | 842 Octets |
| lartworks/theme/images/desktop-bottomleftcorner.png | 665 Octets |
| lartworks/theme/images/bottomside.png | 169 Octets |
| lartworks/theme/images/startMenu_hover.png | 2,18 Ko |
| lartworks/theme/images/windowmini_active.png | 732 Octets |
| lartworks/theme/images/windowmaxi_active.png | 761 Octets |
| lartworks/theme/images/tabTop.png | 703 Octets |
| lartworks/theme/images/undertitle.png | 375 Octets |
| lartworks/theme/images/leftside.png | 174 Octets |
| lartworks/theme/images/windowmini.png | 684 Octets |
| lartworks/theme/images/activeitembackground.png | 1,92 Ko |
| lartworks/theme/images/toprightcorner.png | 419 Octets |
| lartworks/theme/images/startMenu_normal.png | 2,24 Ko |
| lartworks/theme/images/MIMES/ | 0 |
| lartworks/theme/images/MIMES/tex.png | 4,28 Ko |
| lartworks/theme/images/MIMES/tpl.png | 3,80 Ko |
| lartworks/theme/images/MIMES/pps.png | 4,48 Ko |
| lartworks/theme/images/MIMES/exe.png | 5,51 Ko |
| lartworks/theme/images/MIMES/swf.png | 5,33 Ko |
| lartworks/theme/images/MIMES/flv.png | 4,92 Ko |
| lartworks/theme/images/MIMES/wav.png | 4,65 Ko |
| lartworks/theme/images/MIMES/deb.png | 5,14 Ko |
| lartworks/theme/images/MIMES/iso.png | 5,53 Ko |
| lartworks/theme/images/MIMES/log.png | 5,25 Ko |
| lartworks/theme/images/MIMES/avi.png | 4,92 Ko |
| lartworks/theme/images/MIMES/l.png | 3,52 Ko |
| lartworks/theme/images/MIMES/zip.png | 5,19 Ko |
| lartworks/theme/images/MIMES/so.png | 5,45 Ko |
| lartworks/theme/images/MIMES/yy.png | 3,80 Ko |
| lartworks/theme/images/MIMES/mpg.png | 4,92 Ko |
| lartworks/theme/images/MIMES/p.png | 3,75 Ko |
| lartworks/theme/images/MIMES/tar.png | 5,19 Ko |
| lartworks/theme/images/MIMES/cpp.png | 3,98 Ko |
| lartworks/theme/images/MIMES/mid.png | 4,65 Ko |
| lartworks/theme/images/MIMES/j.png | 3,70 Ko |
| lartworks/theme/images/MIMES/tgz.png | 5,19 Ko |
| lartworks/theme/images/MIMES/ogv.png | 4,92 Ko |
| lartworks/theme/images/MIMES/rpm.png | 4,35 Ko |
| lartworks/theme/images/MIMES/h.png | 3,60 Ko |
| lartworks/theme/images/MIMES/php.png | 4,90 Ko |
| lartworks/theme/images/MIMES/mp3.png | 4,65 Ko |
| lartworks/theme/images/MIMES/txt.png | 5,88 Ko |
| lartworks/theme/images/MIMES/hpp.png | 3,60 Ko |
| lartworks/theme/images/MIMES/dvi.png | 5,32 Ko |
| lartworks/theme/images/MIMES/y.png | 3,80 Ko |
| lartworks/theme/images/MIMES/f.png | 3,58 Ko |
| lartworks/theme/images/MIMES/o.png | 5,45 Ko |
| lartworks/theme/images/MIMES/a.png | 5,45 Ko |
| lartworks/theme/images/MIMES/sh.png | 4,91 Ko |
| lartworks/theme/images/MIMES/java.png | 5,61 Ko |
| lartworks/theme/images/MIMES/tmp.png | 5,36 Ko |
| lartworks/theme/images/MIMES/makefile.png | 4,91 Ko |
| lartworks/theme/images/MIMES/pl.png | 3,74 Ko |
| lartworks/theme/images/MIMES/asm.png | 4,23 Ko |
| lartworks/theme/images/MIMES/mov.png | 5,36 Ko |
| lartworks/theme/images/MIMES/ps.png | 4,29 Ko |
| lartworks/theme/images/MIMES/flac.png | 4,65 Ko |
| lartworks/theme/images/MIMES/ogg.png | 4,65 Ko |
| lartworks/theme/images/MIMES/xcf.png | 5,20 Ko |
| lartworks/theme/images/MIMES/s.png | 4,23 Ko |
| lartworks/theme/images/MIMES/c.png | 4,01 Ko |
| lartworks/theme/images/MIMES/doc.png | 5,68 Ko |
| lartworks/theme/images/windowmaxi.png | 717 Octets |
| lartworks/theme/images/tabLeft.png | 852 Octets |
| lartworks/theme/images/icons/ | 0 |
| lartworks/theme/images/icons/xapp.png | 17,73 Ko |
| lartworks/theme/images/windowclose.png | 687 Octets |
| lartworks/theme/images/bottomrightcorner.png | 207 Octets |
| lartworks/theme/images/desktop-toprightcorner.png | 690 Octets |
| lartworks/theme/images/titletotitlebar.png | 1,32 Ko |
| lartworks/theme/images/desktop-topleftcorner.png | 682 Octets |
| lartworks/theme/images/desktop-bottomrightcorner.png | 660 Octets |
| lartworks/theme/images/tabBottom.png | 774 Octets |
| lartworks/theme/images/bottomleftcorner.png | 209 Octets |
| lartworks/theme/images/windowclose_active.png | 742 Octets |
| lartworks/theme/images/rightside.png | 174 Octets |
| lartworks/theme/qt/ | 0 |
| lartworks/theme/Makefile | 60 Octets |
| lartworks/theme/gtk/ | 0 |
| lartworks/theme/win/ | 0 |
| lartworks/wallpapers/ | 0 |
| lartworks/wallpapers/paradisesun_fg.png | 753,33 Ko |
| lartworks/wallpapers/paradisesun_bg.png | 1,36 Mo |
| lartworks/wallpapers/paradisesun_sun.png | 20,88 Ko |
| lartworks/ldmtheme/ | 0 |
| lartworks/sounds/ | 0 |
| lartworks/bootsplash/ | 0 |
| llibs/ | 0 |
| llibs/Makefile | 527 Octets |
| llibs/windowsystem/ | 0 |
| llibs/windowsystem/XAtoms.cpp | 1,17 Ko |
| llibs/windowsystem/XWindow.cpp | 1,73 Ko |
| llibs/windowsystem/obj/ | 0 |
| llibs/windowsystem/include/ | 0 |
| llibs/windowsystem/include/XAtoms.h | 1,07 Ko |
| llibs/windowsystem/include/XWindow.h | 1,31 Ko |
| llibs/windowsystem/windowsystem.pro | 562 Octets |
| llibs/lio/ | 0 |
| llibs/lio/obj/ | 0 |
| llibs/lio/include/ | 0 |
| llibs/lio/include/LIOJob.h | 8,12 Ko |
| llibs/lio/include/LDirModel.h | 6,18 Ko |
| llibs/lio/LIOJob.cpp | 3,10 Ko |
| llibs/lio/lio.pro | 416 Octets |
| llibs/lio/LDirModel.cpp | 16,01 Ko |
| llibs/widgets/ | 0 |
| llibs/widgets/LDirView.cpp | 5,80 Ko |
| llibs/widgets/obj/ | 0 |
| llibs/widgets/include/ | 0 |
| llibs/widgets/include/LImageButton.h | 2,19 Ko |
| llibs/widgets/include/LDirView.h | 5,74 Ko |
| llibs/widgets/LImageButton.cpp | 1,40 Ko |
| llibs/widgets/widgets.pro | 604 Octets |
| llibs/plugins/ | 0 |
| llibs/plugins/Makefile | 195 Octets |
| llibs/plugins/panache/ | 0 |
| llibs/plugins/panache/desktop/ | 0 |
| llibs/plugins/panache/desktop/Makefile | 78 Octets |
| llibs/plugins/panache/desktop/ghetto/ | 0 |
| llibs/plugins/panache/desktop/ghetto/ghetto.h | 1,76 Ko |
| llibs/plugins/panache/desktop/ghetto/ghetto.cpp | 2,78 Ko |
| llibs/plugins/panache/desktop/ghetto/ghetto.pro | 184 Octets |
| llibs/plugins/panache/Makefile | 253 Octets |
| llibs/plugins/panache/menu/ | 0 |
| llibs/plugins/panache/menu/Makefile | 163 Octets |
| llibs/plugins/panache/menu/desktopentries/ | 0 |
| llibs/plugins/panache/menu/desktopentries/desktopentries.pro | 194 Octets |
| llibs/plugins/panache/menu/desktopentries/desktopentries.h | 1,31 Ko |
| llibs/plugins/panache/menu/desktopentries/desktopentries.cpp | 2,83 Ko |
| llibs/plugins/panache/menu/taskbar/ | 0 |
| llibs/plugins/panache/menu/taskbar/taskbar.cpp | 9,65 Ko |
| llibs/plugins/panache/menu/taskbar/taskbar.pro | 187 Octets |
| llibs/plugins/panache/menu/taskbar/taskbar.h | 2,15 Ko |
| llibs/plugins/panache/include/ | 0 |
| llibs/plugins/panache/include/IPanacheDesktopDecoratorPlugin.h | 1,97 Ko |
| llibs/plugins/panache/include/IPanacheMenuPlugin.h | 1,77 Ko |
| llibs/plugins/panache/include/IPanacheDesktopPlugin.h | 2,46 Ko |
| llibs/plugins/panache/wallpapers/ | 0 |
| llibs/plugins/panache/wallpapers/Makefile | 88 Octets |
| llibs/plugins/panache/wallpapers/paradisesun/ | 0 |
| llibs/plugins/panache/wallpapers/paradisesun/paradisesun.pro | 205 Octets |
| llibs/plugins/panache/wallpapers/paradisesun/paradisesun.cpp | 1,00 Ko |
| llibs/plugins/panache/wallpapers/paradisesun/widget.h | 1,37 Ko |
| llibs/plugins/panache/wallpapers/paradisesun/paradisesun.h | 1,17 Ko |
| llibs/plugins/panache/wallpapers/paradisesun/widget.cpp | 3,52 Ko |
| llibs/plugins/lio/ | 0 |
| llibs/plugins/lio/Makefile | 158 Octets |
| llibs/plugins/lio/localprovider/ | 0 |
| llibs/plugins/lio/localprovider/localprovider.h | 1,73 Ko |
| llibs/plugins/lio/localprovider/localprovider.pro | 202 Octets |
| llibs/plugins/lio/localprovider/localprovider.cpp | 3,77 Ko |
| llibs/plugins/lio/include/ | 0 |
| llibs/plugins/lio/include/ILIOProvider.h | 7,45 Ko |
| llibs/misc/ | 0 |
| llibs/misc/LApplication.cpp | 1,57 Ko |
| llibs/misc/obj/ | 0 |
| llibs/misc/LConfig.cpp | 1,93 Ko |
| llibs/misc/include/ | 0 |
| llibs/misc/include/LApplication.h | 1,35 Ko |
| llibs/misc/include/LConfig.h | 2,77 Ko |
| llibs/misc/misc.pro | 551 Octets |
| gpl-3.0.txt | 17,57 Ko |
Soyez le premier à commenter cette ressource !
Ajoutez votre commentaire & avis sur la ressource :
Vous n'êtes pas connecté !
Rejoignez dès maintenant la communauté en 3 clics et exprimez votre avis !
J'ai déjà un compte