aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoroga2008-07-22 20:42:24 +0000
committeroga2008-07-22 20:42:24 +0000
commitd9557dba0d766f3d73131ca49b6409491684730e (patch)
tree5c4df1db7538132c81c311ab88890cdd42e2d333
parentb4bfc6d32a6ba32f5ae79b7e8a9a010f9052ba8d (diff)
downloadcwm-d9557dba0d766f3d73131ca49b6409491684730e.tar.gz
split x_setup() into two. dpy_init() for setting up the display and
checking the X config, and x_setup to set up the screens. There's an ordering problem that means that some of this init needs to come after the config is parsed, the rest should ideally happen before though. This is a rough split, it will be refined later. Again, needed for an upcoming change. ok okan.
Diffstat (limited to '')
-rw-r--r--calmwm.c26
-rw-r--r--calmwm.h4
2 files changed, 19 insertions, 11 deletions
diff --git a/calmwm.c b/calmwm.c
index c667364..3c932fa 100644
--- a/calmwm.c
+++ b/calmwm.c
@@ -15,7 +15,7 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
- * $Id: calmwm.c,v 1.24 2008/07/22 19:54:57 oga Exp $
+ * $Id: calmwm.c,v 1.25 2008/07/22 20:42:24 oga Exp $
*/
#include "headers.h"
@@ -45,6 +45,7 @@ struct conf Conf;
static char gray_bits[] = {0x02, 0x01};
static void _sigchld_cb(int);
+static void dpy_init(const char *);
int
main(int argc, char **argv)
@@ -78,10 +79,11 @@ main(int argc, char **argv)
group_init();
Starting = 1;
+ dpy_init(display_name);
bzero(&Conf, sizeof(Conf));
conf_setup(&Conf, conf_file);
client_setup();
- x_setup(display_name);
+ x_setup();
Starting = 0;
xev_init();
@@ -106,21 +108,27 @@ main(int argc, char **argv)
}
void
-x_setup(char *display_name)
+dpy_init(const char *dpyname)
{
- struct screen_ctx *sc;
- int i;
-
- TAILQ_INIT(&Screenq);
+ int i;
- if ((X_Dpy = XOpenDisplay(display_name)) == NULL)
+ if ((X_Dpy = XOpenDisplay(dpyname)) == NULL)
errx(1, "unable to open display \"%s\"",
- XDisplayName(display_name));
+ XDisplayName(dpyname));
XSetErrorHandler(x_errorhandler);
Doshape = XShapeQueryExtension(X_Dpy, &Shape_ev, &i);
+ TAILQ_INIT(&Screenq);
+}
+
+void
+x_setup(void)
+{
+ struct screen_ctx *sc;
+ int i;
+
Nscreens = ScreenCount(X_Dpy);
for (i = 0; i < (int)Nscreens; i++) {
XMALLOC(sc, struct screen_ctx);
diff --git a/calmwm.h b/calmwm.h
index a047301..cd06376 100644
--- a/calmwm.h
+++ b/calmwm.h
@@ -15,7 +15,7 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
- * $Id: calmwm.h,v 1.62 2008/07/22 20:26:12 oga Exp $
+ * $Id: calmwm.h,v 1.63 2008/07/22 20:42:24 oga Exp $
*/
#ifndef _CALMWM_H_
@@ -309,7 +309,7 @@ int input_keycodetrans(KeyCode, u_int, enum ctltype *,
char *);
int x_errorhandler(Display *, XErrorEvent *);
-void x_setup(char *display_name);
+void x_setup(void);
char *x_screenname(int);
void x_setupscreen(struct screen_ctx *, u_int);
__dead void usage(void);