Basic plugin infastructure and a sample simple plugin.

This commit is contained in:
Tomas Frydrych
2008-09-18 16:09:11 +01:00
parent d509097967
commit 9b3a0d1ad8
34 changed files with 3023 additions and 309 deletions

View File

@@ -33,7 +33,7 @@
#include "window-private.h"
#include "frame-private.h"
#include "prefs.h"
#include "workspace.h"
#include "workspace-private.h"
#include "keybindings.h"
#include "stack.h"
#include "xprops.h"
@@ -2800,3 +2800,10 @@ meta_screen_unset_cm_selection (MetaScreen *screen)
XSetSelectionOwner (screen->display->xdisplay, a, None, CurrentTime);
}
#endif /* HAVE_COMPOSITE_EXTENSIONS */
GList *
meta_screen_get_workspaces (MetaScreen *screen)
{
return screen->workspaces;
}