/** * This file is a part of the Cairo-Dock project * * Copyright : (C) see the 'copyright' file. * E-mail : see the 'copyright' file. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 3 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ //\________________ Add your name in the copyright file (and / or modify your name here) #include "stdlib.h" #include "applet-config.h" #include "applet-notifications.h" #include "applet-struct.h" #include "applet-rss.h" #include "applet-draw.h" #include "applet-init.h" CD_APPLET_DEFINE_BEGIN (N_("RSSreader"), 2, 0, 0, CAIRO_DOCK_CATEGORY_APPLET_INTERNET, N_("This applet is an RSS/Atom feed reader.\n" "You can instanciate it as many times as you want.\n" "USAGE:\n" " - Left-click : display the complete feed lines in a dialog.\n" " - Middle-click : refresh the feed.\n" " - Scroll on the desklet : make the feed lines scroll.\n" " - Drag and drop a valid URL on the icon to use it,\n" " or copy it and use \"Paste a new RSS Url\" in the menu.\n" " or edit the Configuration Panel."), "Yann Dulieu (Nochka85)") CD_APPLET_DEFINE_COMMON_APPLET_INTERFACE CD_APPLET_ALLOW_EMPTY_TITLE CD_APPLET_DEFINE_END //\___________ Here is where you initiate your applet. myConfig is already set at this point, and also myIcon, myContainer, myDock, myDesklet (and myDrawContext if you're in dock mode). The macro CD_APPLET_MY_CONF_FILE and CD_APPLET_MY_KEY_FILE can give you access to the applet's conf-file and its corresponding key-file (also available during reload). If you're in desklet mode, myDrawContext is still NULL, and myIcon's buffers has not been filled, because you may not need them then (idem when reloading). CD_APPLET_INIT_BEGIN if (myDesklet) { CD_APPLET_SET_DESKLET_RENDERER ("Simple"); // set a desklet renderer. CD_APPLET_ALLOW_NO_CLICKABLE_DESKLET; } else { CD_APPLET_SET_DEFAULT_IMAGE_ON_MY_ICON_IF_NONE; // en mode dock l'image de l'icone est statique. } // On met un message d'attente. CDRssItem *pItem = g_new0 (CDRssItem, 1); // on commence au debut de la liste (c'est le titre). myData.pItemList = g_list_prepend (myData.pItemList, pItem); pItem->cTitle = g_strdup (D_("Retrieving data...")); // on lance la tache periodique. cd_rssreader_launch_task (myApplet); // en mode desklet on redessine l'icone avec le message d'attente. if (myDesklet) { cd_applet_update_my_icon (myApplet); } // on s'abonne aux evenements. CD_APPLET_REGISTER_FOR_CLICK_EVENT; CD_APPLET_REGISTER_FOR_MIDDLE_CLICK_EVENT; CD_APPLET_REGISTER_FOR_DROP_DATA_EVENT; CD_APPLET_REGISTER_FOR_BUILD_MENU_EVENT; CD_APPLET_REGISTER_FOR_SCROLL_EVENT; CD_APPLET_INIT_END //\___________ Here is where you stop your applet. myConfig and myData are still valid, but will be reseted to 0 at the end of the function. In the end, your applet will go back to its original state, as if it had never been activated. CD_APPLET_STOP_BEGIN CD_APPLET_UNREGISTER_FOR_CLICK_EVENT; CD_APPLET_UNREGISTER_FOR_MIDDLE_CLICK_EVENT; CD_APPLET_UNREGISTER_FOR_DROP_DATA_EVENT; CD_APPLET_UNREGISTER_FOR_BUILD_MENU_EVENT; CD_APPLET_UNREGISTER_FOR_SCROLL_EVENT; if (myData.iSidRedrawIdle != 0) g_source_remove (myData.iSidRedrawIdle); CD_APPLET_STOP_END //\___________ The reload occurs in 2 occasions : when the user changes the applet's config, and when the user reload the cairo-dock's config or modify the desklet's size. The macro CD_APPLET_MY_CONFIG_CHANGED can tell you this. myConfig has already been reloaded at this point if you're in the first case, myData is untouched. You also have the macro CD_APPLET_MY_CONTAINER_TYPE_CHANGED that can tell you if you switched from dock/desklet to desklet/dock mode. CD_APPLET_RELOAD_BEGIN if (CD_APPLET_MY_CONFIG_CHANGED) { if (myDesklet && CD_APPLET_MY_CONTAINER_TYPE_CHANGED) // we are now in a desklet, set a renderer. { CD_APPLET_SET_DESKLET_RENDERER ("Simple"); // set a desklet renderer. CD_APPLET_ALLOW_NO_CLICKABLE_DESKLET; } myData.fLogoSize = -1; // pour recharger le logo. // on remplace le texte actuel par un message d'attente. myData.bUpdateIsManual = FALSE; myData.iFirstDisplayedItem = 0; if (myData.iSidRedrawIdle != 0) { g_source_remove (myData.iSidRedrawIdle); myData.iSidRedrawIdle = 0; } g_free (myData.PrevFirstTitle); myData.PrevFirstTitle = NULL; cd_rssreader_free_item_list (myApplet); CDRssItem *pItem = g_new0 (CDRssItem, 1); // on commence au debut de la liste (c'est le titre). myData.pItemList = g_list_prepend (myData.pItemList, pItem); pItem->cTitle = g_strdup (D_("Retrieving data...")); myData.bInit = FALSE; myData.bError = FALSE; // on relance la tache periodique. cd_rssreader_launch_task (myApplet); // redessin. if (myDesklet) { cd_applet_update_my_icon (myApplet); } else { CD_APPLET_SET_DEFAULT_IMAGE_ON_MY_ICON_IF_NONE; } } // en mode desklet on redessine l'icone aux nouvelles dimensions. if (myDesklet) { cd_applet_update_my_icon (myApplet); } CD_APPLET_RELOAD_END