~mike82/netbook-remix-launcher/fixes

« back to all changes in this revision

Viewing changes to src/launcher-app.c

  • Committer: Neil J. Patel
  • Date: 2008-04-16 13:50:57 UTC
  • Revision ID: njpatel@gmail.com-20080416135057-uwf4gyqvdmn9xnpu
* Inital check-in of the category bar

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
#include "launcher-app.h"
24
24
 
25
25
#include "launcher-background.h"
 
26
#include "launcher-catbar.h"
26
27
#include "launcher-defines.h"
27
28
#include "launcher-menu.h"
28
29
#include "launcher-startup.h"
43
44
  LauncherMenu *menu;
44
45
  
45
46
  ClutterActor *bg;
 
47
  ClutterActor *catbar;
46
48
};
47
49
 
48
50
/* GObject stuff */
95
97
  /*g_signal_connect (priv->menu, "menu-changed",
96
98
                    G_CALLBACK (on_menu_changed), app);*/
97
99
 
 
100
  /* Category bar */
 
101
  priv->catbar = launcher_catbar_get_default ();
 
102
  clutter_container_add_actor (CLUTTER_CONTAINER (stage), priv->catbar);
 
103
  clutter_actor_set_position (priv->catbar, 0, 0);
 
104
  clutter_actor_show (priv->catbar);
98
105
}
99
106
 
100
107
LauncherApp *