]> Dogcows Code - chaz/openbox/commitdiff
respect the active/mouse options for monitor placement, and use ObMonitorPlace for...
authorDana Jansens <danakj@orodu.net>
Sun, 16 Oct 2011 00:07:57 +0000 (20:07 -0400)
committerDana Jansens <danakj@orodu.net>
Sun, 16 Oct 2011 22:51:51 +0000 (18:51 -0400)
openbox/config.c
openbox/config.h
openbox/place.c

index 9067011a1d395bdf5d0f1d2f1e103f41a9275c70..0d9eb689f2e7f4e7ad8ecc4073529413c1541371 100644 (file)
@@ -111,7 +111,7 @@ ObAppSettings* config_create_app_settings(void)
     settings->type = -1;
     settings->decor = -1;
     settings->shade = -1;
-    settings->monitor_type = 0;
+    settings->monitor_type = OB_PLACE_MONITOR_ANY;
     settings->monitor = -1;
     settings->focus = -1;
     settings->desktop = 0;
@@ -136,7 +136,7 @@ void config_app_settings_copy_non_defaults(const ObAppSettings *src,
     copy_if(type, (ObClientType)-1);
     copy_if(decor, -1);
     copy_if(shade, -1);
-    copy_if(monitor_type, 0);
+    copy_if(monitor_type, OB_PLACE_MONITOR_ANY);
     copy_if(monitor, -1);
     copy_if(focus, -1);
     copy_if(desktop, 0);
@@ -297,13 +297,13 @@ static void parse_per_app_settings(xmlNodePtr node, gpointer d)
                         gchar *s = obt_xml_node_string(c);
                         if (!g_ascii_strcasecmp(s, "mouse"))
                             settings->monitor_type =
-                                    OB_APP_SETTINGS_MONITOR_MOUSE;
+                                    OB_PLACE_MONITOR_MOUSE;
                         else if (!g_ascii_strcasecmp(s, "active"))
                             settings->monitor_type =
-                                    OB_APP_SETTINGS_MONITOR_ACTIVE;
+                                    OB_PLACE_MONITOR_ACTIVE;
                         else if (!g_ascii_strcasecmp(s, "primary"))
                             settings->monitor_type =
-                                    OB_APP_SETTINGS_MONITOR_PRIMARY;
+                                    OB_PLACE_MONITOR_PRIMARY;
                         else
                             settings->monitor = obt_xml_node_int(c);
                         g_free(s);
index 1802179d3f6774d67bc96b3a60e00d16bbfb888d..730dc39a5f8040d1a3ca5460dd087d4bf9c33f34 100644 (file)
 
 typedef struct _ObAppSettings ObAppSettings;
 
-typedef enum {
-    OB_APP_SETTINGS_MONITOR_FIXED,
-    OB_APP_SETTINGS_MONITOR_PRIMARY,
-    OB_APP_SETTINGS_MONITOR_ACTIVE,
-    OB_APP_SETTINGS_MONITOR_MOUSE
-} ObAppSettingsMonitor;
-
 struct _ObAppSettings
 {
     GPatternSpec *class;
@@ -56,7 +49,7 @@ struct _ObAppSettings
     gint shade;
     gint decor;
     gint focus;
-    ObAppSettingsMonitor monitor_type;
+    ObPlaceMonitor monitor_type;
     gint monitor;
     gint iconic;
     gint skip_pager;
index a73a8bfbd60838bd2a610c53e78a94bc69ca9376..2cd21bb0379778c3c9a9b947a996b798944c0d93 100644 (file)
@@ -193,21 +193,25 @@ static Rect *pick_head(ObClient *c, gboolean foreground,
         if (config_place_monitor == OB_PLACE_MONITOR_PRIMARY)
             choice[i].flags |= HEAD_PLACED;
         if (settings &&
-            settings->monitor_type == OB_APP_SETTINGS_MONITOR_PRIMARY)
+            settings->monitor_type == OB_PLACE_MONITOR_PRIMARY)
             choice[i].flags |= HEAD_PERAPP;
     }
 
     i = screen_monitor_active();
     if (i < screen_num_monitors) {
+        if (config_place_monitor == OB_PLACE_MONITOR_ACTIVE)
+            choice[i].flags |= HEAD_PLACED;
         if (settings &&
-            settings->monitor_type == OB_APP_SETTINGS_MONITOR_ACTIVE)
+            settings->monitor_type == OB_PLACE_MONITOR_ACTIVE)
             choice[i].flags |= HEAD_PERAPP;
     }
 
     i = screen_monitor_pointer();
     if (i < screen_num_monitors) {
+        if (config_place_monitor == OB_PLACE_MONITOR_MOUSE)
+            choice[i].flags |= HEAD_PLACED;
         if (settings &&
-            settings->monitor_type == OB_APP_SETTINGS_MONITOR_MOUSE)
+            settings->monitor_type == OB_PLACE_MONITOR_MOUSE)
             choice[i].flags |= HEAD_PERAPP;
     }
 
This page took 0.023785 seconds and 4 git commands to generate.