~ubuntu-branches/ubuntu/quantal/cairo-dock-plug-ins/quantal-201208191523

« back to all changes in this revision

Viewing changes to dialog-rendering/src/applet-init.c

  • Committer: Bazaar Package Importer
  • Author(s): Matthieu Baerts (matttbe)
  • Date: 2011-04-20 20:46:51 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20110420204651-ftnpzesj6uc7qeul
Tags: 2.3.0~1-0ubuntu1
* New Upstream Version (LP: #723995)
* Upstream short ChangeLog (since 2.3.0~0rc1):
 - Updated translations
 - Updated the integration of the new versions of kwin and compiz
    (Switcher, ShowDesktop, etc.)
 - Removed a lot of useless g_print
 - Updated a few plug-ins to fit with the new version of the API (gldit)
 - Fixed a few bugs
 - Updated MeMenu, MessagingMenu and Status-Notifier to works
    with the latest version of dbusmenu, etc.
* Switch to dpkg-source 3.0 (quilt) format
* debian/cairo-dock-plug-ins.install:
 - Added new files (interfaces for python, ruby, vala and mono)
* debian/control:
 - Added new dependences for new applets (sensors and zeitgeist)
    and new interfaces (python, valac, ruby and mono)
 - Updated the version of cairo-dock build-dependences
* debian/rules:
 - Added a new CMake flag to install python interface in debian/tmp
* Updated debian/watch

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
        rendering_register_text_dialog_renderer ();
54
54
 
55
55
        CD_APPLET_SET_CONTAINER_TYPE (CAIRO_DOCK_MODULE_IS_PLUGIN);
56
 
        CD_APPLET_ATTACH_TO_INTERNAL_MODULE ("Dialogs");
 
56
        CD_APPLET_EXTEND_MANAGER ("Dialogs");
57
57
CD_APPLET_DEFINE_END
58
58
 
59
59
 
61
61
        //\_______________ On enregistre les decorateurs.
62
62
        cd_decorator_register_comics ();
63
63
        cd_decorator_register_modern ();
64
 
        cd_decorator_register_3Dplane ();
 
64
        ///cd_decorator_register_3Dplane ();
65
65
        cd_decorator_register_tooltip ();  // By ChAnGFu
66
66
        cd_decorator_register_curly ();
67
 
        
68
 
        /*if (! cairo_dock_is_loading ())  // plug-in active a la main (en-dehors du chargement du theme).
69
 
                cairo_dock_update_dialog_decorator_list_for_gui ();*/
70
67
CD_APPLET_INIT_END
71
68
 
72
69
 
74
71
        //\_______________ On enregistre les decorateurs.
75
72
        cairo_dock_remove_dialog_decorator (MY_APPLET_DECORATOR_COMICS_NAME);
76
73
        cairo_dock_remove_dialog_decorator (MY_APPLET_DECORATOR_MODERN_NAME);
77
 
        cairo_dock_remove_dialog_decorator (MY_APPLET_DECORATOR_3DPLANE_NAME);
 
74
        ///cairo_dock_remove_dialog_decorator (MY_APPLET_DECORATOR_3DPLANE_NAME);
78
75
        cairo_dock_remove_dialog_decorator (MY_APPLET_DECORATOR_TOOLTIP_NAME);
79
76
        cairo_dock_remove_dialog_decorator (MY_APPLET_DECORATOR_CURLY_NAME);
80
 
        
81
 
        cairo_dock_update_dialog_decorator_list_for_gui ();
82
77
CD_APPLET_STOP_END
83
78
 
84
79