]> git.sur5r.net Git - i3/i3/commitdiff
Update TODO and header-comments
authorMichael Stapelberg <michael+git@stapelberg.de>
Sun, 15 Feb 2009 02:07:29 +0000 (03:07 +0100)
committerMichael Stapelberg <michael+git@stapelberg.de>
Sun, 15 Feb 2009 02:07:29 +0000 (03:07 +0100)
TODO
src/commands.c
src/debug.c
src/handlers.c
src/layout.c
src/mainx.c
src/table.c
src/util.c
src/xcb.c
src/xinerama.c

diff --git a/TODO b/TODO
index bfd98eea88e71446e65a335488d42195848895d1..ff02d9f1a418cd1a5a4293b7023702861c5dcc15 100644 (file)
--- a/TODO
+++ b/TODO
@@ -1,7 +1,6 @@
 TODO list, in order of importance:
 
  * freely resizable (e.g. using your mouse, for now) percentage of rows/cols
- * xinerama
  * document stuff!
  * more documentation!
  * debian package
index 6c9ba500bea1d25610a81d8fe61e7be936f5b8ad..0920c2abc562c86705337fe1000afa9747701f55 100644 (file)
@@ -3,7 +3,7 @@
  *
  * i3 - an improved dynamic tiling window manager
  *
- * (c) 2009 Michael Stapelberg and contributors
+ * © 2009 Michael Stapelberg and contributors
  *
  * See file LICENSE for license information.
  *
index 0d9066b365657a0b73279ba9b706ed0fe1eb2c79..1be47269d4fe25050ca695435e1d7a4c85e10037 100644 (file)
@@ -3,16 +3,17 @@
  *
  * i3 - an improved dynamic tiling window manager
  *
- * (c) 2009 Michael Stapelberg and contributors
+ * © 2009 Michael Stapelberg and contributors
  *
  * See file LICENSE for license information.
  *
+ * debug.c: Contains debugging functions, especially FormatEvent, which prints unhandled events.
+ *          This code is from xcb-util.
+ *
  */
 #include <stdio.h>
 #include <xcb/xcb.h>
 
-/* Debug functions here, especially the FormatEvent-stuff, which prints unhandled events */
-
 static const char *labelError[] = {
     "Success",
     "BadRequest",
index 5aef05e975ab1f5e3d2ac326c10b7db1cfe075a9..b8ae19d411fea6992c11a90da6225cef98daa9dc 100644 (file)
@@ -3,7 +3,7 @@
  *
  * i3 - an improved dynamic tiling window manager
  *
- * (c) 2009 Michael Stapelberg and contributors
+ * © 2009 Michael Stapelberg and contributors
  *
  * See file LICENSE for license information.
  *
index e88a54e62e9d45b3bda237261f1f9c17320ad028..7145aacf121fdbcc1dac9ad8195eb4bc883948bf 100644 (file)
@@ -3,7 +3,7 @@
  *
  * i3 - an improved dynamic tiling window manager
  *
- * (c) 2009 Michael Stapelberg and contributors
+ * © 2009 Michael Stapelberg and contributors
  *
  * See file LICENSE for license information.
  *
index d3ea967c8db04f41a1be66394a27bcbff5624a58..9bdd3ae314290526ec8111aa9b713e3bf98871d8 100644 (file)
@@ -3,7 +3,7 @@
  *
  * i3 - an improved dynamic tiling window manager
  *
- * (c) 2009 Michael Stapelberg and contributors
+ * © 2009 Michael Stapelberg and contributors
  *
  * See file LICENSE for license information.
  *
index 41efde0bcd75cb1f3e35a12976a260f5007044db..c0f75e167a5bd0dbb92c250a7e46708ee922b637 100644 (file)
@@ -3,13 +3,12 @@
  *
  * i3 - an improved dynamic tiling window manager
  *
- * (c) 2009 Michael Stapelberg and contributors
+ * © 2009 Michael Stapelberg and contributors
  *
  * See file LICENSE for license information.
  *
- */
-/*
- * This file provides functions for easier accessing of _the_ table
+ * table.c: Functions/macros for easy modifying/accessing of _the_ table (defining our
+ *          layout).
  *
  */
 #include <stdio.h>
index 76abe2aafce04bf00fed0b5e9ba36079f3a9870c..8bbc145c2660f8a2035c7128031dd99b234ce974 100644 (file)
@@ -3,10 +3,12 @@
  *
  * i3 - an improved dynamic tiling window manager
  *
- * (c) 2009 Michael Stapelberg and contributors
+ * © 2009 Michael Stapelberg and contributors
  *
  * See file LICENSE for license information.
  *
+ * util.c: Utility functions, which can be useful everywhere.
+ *
  */
 #include <stdio.h>
 #include <stdlib.h>
index c5a3aa061add1c9bf5d6f6694b9ad245f7e48084..f1563afbf8fc34730ad89462f4e71cab5c0ae2da 100644 (file)
--- a/src/xcb.c
+++ b/src/xcb.c
@@ -3,17 +3,19 @@
  *
  * i3 - an improved dynamic tiling window manager
  *
- * (c) 2009 Michael Stapelberg and contributors
+ * © 2009 Michael Stapelberg and contributors
  *
  * See file LICENSE for license information.
  *
+ * xcb.c: Helper functions for easier usage of XCB
+ *
  */
 #include <stdint.h>
 #include <stdio.h>
 #include <stdlib.h>
 
 #include <xcb/xcb.h>
-/* All the helper functions needed for efficiently using XCB */
+
 #include "util.h"
 
 /*
index 4c8ffa88a48552cffd321cbe8d8847b0726f554b..b7c931fe8154b4a5d21ef9731868df0be39e7cdc 100644 (file)
@@ -3,7 +3,7 @@
  *
  * i3 - an improved dynamic tiling window manager
  *
- * (c) 2009 Michael Stapelberg and contributors
+ * © 2009 Michael Stapelberg and contributors
  *
  * See file LICENSE for license information.
  *