Commit graph

225 commits

Author SHA1 Message Date
Dana Jansens
740c8af41e add .desktops for running Openbox, KDE/Openbox and GNOME/Openbox
add more .desktops for gnome and update it
add scripts to run an KDE/Openbox and GNOME/Openbox session
also add scripts for openbox-gnome and openbox-kde which are placeholders and will be replaced by real programs.
also set the name on the wm_support_win to be how we were called (which is passed in the environment) rather than just "Openbox"
add an envionment variable for wanting to be notified (SIGUSR2) when openbox reconfigures. this would be used by openbox-shell to update the root window.. if i make such a thing.. i dunno.
2007-05-07 01:41:48 +00:00
Dana Jansens
526560b8a0 changes to the client menu, which entries are there, and reorganizing, and renaming.
let you highlight disabled menu entries, they just aren't runable of course, and add the activedisabled theme element for these entries.
add the all desktops button picture to "All desktops" in the client menu
update the themes for the new element, and some changes to make things more readable-better contrast.

CLEARLOOKS-OLIVE is now DIFFERENT FROM THE 3.4 BRANCH SO DON'T RE-RUN THEMETOXML ON IT :( :(
yeah.. i think that is everything?
2007-05-05 22:26:59 +00:00
Dana Jansens
7e946f68d9 make the modifier key code a lot better...
1) it can handle more user cases.
2) it can handle binding more modifier keys with their keysym names like Hyper and Super. W is a shortcut for Super, cuz the windows key is generally bound to it.
3) if you change your keymap bindings and reconfigure openbox it will learn your changes.
and i dunno.. its just nice and stuff now.. you can actually read it I think..
2007-05-04 01:10:03 +00:00
Dana Jansens
ee3d1b7d64 tabs 2007-05-02 04:07:03 +00:00
Dana Jansens
37019bc8a9 capitalize the theme names 2007-05-02 03:58:06 +00:00
Dana Jansens
064e997145 add new Clearlooks themes. Make Clearlooks the default theme. 2007-05-02 03:42:34 +00:00
Dana Jansens
cf3427b2e3 add these cflags even though they are empty right now all the time 2007-04-24 02:59:26 +00:00
Dana Jansens
ec4f685b82 add the tests to the dist tarball 2007-04-23 18:22:00 +00:00
Dana Jansens
d713bdf462 remove the client_time_heap thing. actually its better to just use the user_time on the currently focused window I think. that will handle panels and things too. 2007-04-20 05:22:23 +00:00
Dana Jansens
90cd9c6219 get rid of global client_last_user_time variable.
add ObClientTimeHeap. This is a max-heap of the clients based on their user times. this only includes the clients whose user time is not CurrentTime. the maximum from this heap replaces the client_last_user_time variable, so that you always have the latest time, not the last time that was changed.

hoefully it works, so far it seems to.
2007-04-18 19:22:59 +00:00
Dana Jansens
c567f5937b add support for the X Cursor library. this means a nicer cursor for startup notification. 2007-03-25 16:56:47 +00:00
Dana Jansens
d17fe2d29b there is no themetoxml.h 2007-03-24 17:19:33 +00:00
Mikael Magnusson
4ad3961e36 accidentally didn't include client_list_menu.h in dist 2007-03-23 17:02:11 +00:00
Dana Jansens
1cbd7960fb don't install the old themeupdate.py file 2007-03-06 02:58:24 +00:00
Dana Jansens
ec304c9e43 scary commit..but here goes.
YOUR THEMES ARE NOW OFFICIALLY BROKEN.

Openbox has just moved it's theme format to an XML based one. The details of
this format can be found in data/themerc.xsd (and http://openbox.org/themerc.xsd

ALSO! This is very good and important and stuff! In the tools directory you
will find THEMETOXML ! This tool takes a themerc on stdin, and spits out
the same theme in theme.xml format. So this is all you need to do to update
your themes.

PLEASE NOTE: This themetoxml does _not_ install itself anywhere. It simply
builds and then lives out in its tools/themetoxml directory, and that's it. So
if you want to use it, that is where to find it.

In moving to the new XML format, a number of additions/changes to the theme
engine have been made. Themetoxml takes these into account and will set all
the new things appropriately to make your theme look the same as it always has.

New additions include..
* padding now has an horizontal and vertical component, instead of being one number
* menus can have different borders than windows (color and size)
* menu offset can now be negative. it's a little weird, but someone will want it no doubt
* fonts are no longer controled by the theme at all, however font shadowing is, and on that note..
* font shadows are now any color you want, not just black and white
* you can now set the shadow anywhere you can set the text's color, so you have more control, i.e. you can set shadow on active menu items but not inactive, or disabled, etc.
* every color now has an alpha channel. at the moment they don't do anything, besides the font shadow one, but it leaves room for future explorations. it is REALLY HIGHLY RECOMMENDED that you set the alpha to 255 all the time, until such time as it could be useful. otherwise one day your theme may turn awful for people.
* font colors are in the range 0-255, in case you were wondering, and they have to be specified in decimal
* if you'd like to change you font's you can do so in your configuration file. this is how it is going to stay. changing the font in the theme assumes too much about peoples eye sight and locality and stuff. it doesn't belong there, sorry. the system-wide default rc.xml includes the new font settings for your viewing pleasure, and ill drop an example of it below.
* shadows can now be positioned in any direction, they have both an x and a y offset which can be negative and positive. and offset of 0,0 will disable the shadow

This isn't a release or anything. If someone had some good ideas about the xml theme format, I'd like to hear them. But I don't think it will be changing much right now beyond where it is. I don't even know how the new functionality will play out for themers, so we'll see.

Whew.. I guess that's it. I'm not sure if I mentioned every little change or not, but oh well. Mileage may vary.. Please send any feedback.

Here's the font configuration example. Hopefully ObConf will let you set this real soon.

<theme>
...
  <font place="ActiveWindow">
    <name>arial,sans</name>
    <size>7</size>
    <weight>bold</weight>
    <slant>normal</slant>
  </font>
  <font place="InactiveWindow">
    <name>arial,sans</name>
    <size>7</size>
    <weight>bold</weight>
    <slant>normal</slant>
  </font>
  <font place="MenuTitle">
    <name>arial,sans</name>
    <size>8</size>
    <weight>bold</weight>
    <slant>normal</slant>
  </font>
  <font place="MenuItem">
    <name>arial,sans</name>
    <size>8</size>
    <weight>bold</weight>
    <slant>normal</slant>
  </font>
</theme>
2007-03-05 15:44:17 +00:00
Dana Jansens
e6fba91476 kde systray applications no longer need the tray proxy, so let's remove it from svn 2007-03-05 03:33:00 +00:00
Dana Jansens
5697404dd6 add the themetoxml tool ! yay 2007-03-05 03:30:22 +00:00
Dana Jansens
037fc862b0 pango is now mandatory..
lots of cleanups to the pango code, which was a very nice base to start from. thanks to whomever wrote that for us.. put some of the pango variables into the various render structs so that they don't need to be created all the time. put the pango context inside our RrInstance so that it can be properly freed at shutdown. removed xft dependencies all through the code and the build system also. who knows if this will break compiling for some poor souls. i guess we'll find out, won't we!
2007-03-03 02:53:41 +00:00
Mikael Magnusson
f43067b772 a combined client_list_menu, use as client-list-combined-menu in your rc.xml. needs some layout tuneups 2007-01-30 09:32:17 +00:00
Mikael Magnusson
3039eb960c oops 2006-08-20 13:15:37 +00:00
Mikael Magnusson
b78feb8a8f lalala 2006-08-18 19:32:07 +00:00
Mikael Magnusson
c10b4e6b3f add new themes 2006-08-18 19:26:08 +00:00
Mikael Magnusson
27ebf0f331 include obrender headers in installation 2006-08-02 16:56:01 +00:00
Mikael Magnusson
9384c87fbc disable compiling of render/rendertest in make all, use make check if you want to use it, it is extremely awesome 2006-08-02 05:14:30 +00:00
Mikael Magnusson
e0aa54a891 rip out the VIDMODE extension stuff. this was only used to size fullscreen windows to the viewport, i doubt anyone is actually using it and it interacts very badly with xinerama. 2006-06-11 09:47:53 +00:00
Mikael Magnusson
b4010b586d final fix i think 2006-06-08 11:46:34 +00:00
Mikael Magnusson
ed61a94ca5 per app settings 2006-06-08 10:18:31 +00:00
Mikael Magnusson
9490107c4b *whistles* 2006-05-10 14:45:48 +00:00
Mikael Magnusson
508390bccc move a line so gentoo doesn't duplicate it 2006-05-10 14:42:30 +00:00
Mikael Magnusson
b287b126cc libobrender needs to link to libobparser 2006-01-14 15:34:40 +00:00
Mikael Magnusson
29dc983d91 yep, got that wrong 2005-11-28 14:27:41 +00:00
Mikael Magnusson
c81ffea4f9 testing branching 2005-11-28 14:26:41 +00:00
Mikael Magnusson
d2c98faf78 now floam can compile with his crazy flags 2005-06-28 01:07:59 +00:00
Mikael Magnusson
0e5feaa299 copy paste bug of course 2005-03-26 07:24:26 +00:00
Mikael Magnusson
68652bb5aa fixes linking on some systems 2005-03-26 07:23:12 +00:00
Mikael Magnusson
e7d1ba6ae3 Pango! yay. Patch mostly by Mohammed Sameer, fixed some memleaks and ifdeffed by me. May still have some bugs. 2004-11-07 13:20:54 +00:00
Mikael Magnusson
c6b505fd66 this seems to not be the right way to fix this (linking obrender to every lib on the planet) 2004-05-07 07:16:34 +00:00
Mikael Magnusson
2deff37326 patch to fix some xft linking 2004-05-06 18:03:16 +00:00
Dana Jansens
ace1d5b510 dist the version.h.in not the version.h 2003-10-27 20:14:30 +00:00
Dana Jansens
13206849ea add version info the library headers 2003-10-27 20:11:14 +00:00
Dana Jansens
ce2643f55b add COMPLIANCE 2003-10-15 06:35:33 +00:00
Dana Jansens
6fd8c6f5fc add X_LIBS to the binaries 2003-10-12 20:33:37 +00:00
Dana Jansens
dcc7fddbf6 add CHANGELOG to the dist 2003-09-26 05:44:42 +00:00
Dana Jansens
136b113278 change how stuff is linked, this should make libtool and automake work nicely again I think 2003-09-25 21:58:10 +00:00
Dana Jansens
d261d21b7f typo 2003-09-23 19:39:48 +00:00
Dana Jansens
74d855593a move foreign into the Makefile.am 2003-09-23 19:28:58 +00:00
Dana Jansens
1d4843f92b reorder the lib_LTLIBRARIES variable, apparently this fixes installing with a DESTDIR, thanks automake >:| 2003-09-22 15:17:22 +00:00
Dana Jansens
b3bbc2eada fixes for auto* build process 2003-09-22 07:45:36 +00:00
Dana Jansens
556a08cec8 use DESTDIR in install-data-hook 2003-09-20 13:53:38 +00:00
Dana Jansens
f3746e29a5 install the menu.xsd 2003-09-19 19:19:52 +00:00
Dana Jansens
86fa7c0966 add the schemas to the distribution 2003-09-19 19:17:26 +00:00
Dana Jansens
d826a88728 rename gnomepanelproxy to gnome-panel-control 2003-09-18 07:47:58 +00:00
Dana Jansens
4f6908feed add gnomepanelproxy 2003-09-18 07:43:33 +00:00
Dana Jansens
5a24f4c1c6 make the installed themeupdate.py executable 2003-09-17 06:51:30 +00:00
Dana Jansens
42bbf21bbd install themupdate.py to share/openbox/ 2003-09-17 06:46:16 +00:00
Dana Jansens
138ee2c949 dont use -release for libtool 2003-09-16 07:22:05 +00:00
Dana Jansens
f7790bb481 fix properly 2003-09-16 04:49:58 +00:00
Dana Jansens
960b409249 make TheBear install poroerly in its openbox-3 dir 2003-09-16 04:49:39 +00:00
Dana Jansens
970d954215 install the libs with release and version info via libtool 2003-09-16 04:49:04 +00:00
Dana Jansens
c1b2fc5324 make openbox base-dir spec compliant, and change the theme dir structure, so that themes go in $XDG_DATA_DIRS/themes/ with gtk/metacity/whateverelse themes 2003-09-15 19:20:05 +00:00
Dana Jansens
1e52b4ac28 install the openbox.png pixmap icon 2003-09-14 21:10:16 +00:00
Dana Jansens
49a73ce15c add support for a default icon, but no icon has been made yet. 2003-09-12 01:11:33 +00:00
Dana Jansens
32c3e07fed distribute the .pc.in files 2003-09-10 17:40:57 +00:00
Dana Jansens
bbc22b9870 remove obconf from this tree.
add versioning for the libraries and pkgconfig files for them.
2003-09-07 23:33:11 +00:00
Dana Jansens
5c57e043e1 remove startup hacks and add startup notification in its own files 2003-09-03 20:36:37 +00:00
Dana Jansens
2573b51904 add themeupdate.py to the distribution 2003-09-03 08:08:00 +00:00
Dana Jansens
67f9061a7a move the default menu to menu.xml 2003-09-02 17:46:37 +00:00
Dana Jansens
cf40ff8791 move rc3 to rc.xml 2003-09-01 17:01:21 +00:00
Dana Jansens
d618c3bc99 update for the new theme selections 2003-09-01 16:49:34 +00:00
Dana Jansens
2c1859759c rm some plugin stuff that i missed 2003-08-31 20:23:28 +00:00
Dana Jansens
de4f92ccc6 using the ObMainLoop, which rulz the planet 2003-08-30 07:20:16 +00:00
Dana Jansens
7fbf1f4bd8 dont need gmodule anymore 2003-08-29 08:46:52 +00:00
Dana Jansens
a6532c3b2f the kernel/ dir has been moved to openbox/ 2003-08-29 08:04:58 +00:00
Dana Jansens
a9567a8163 move the client and client-list menus into the 'kernel' 2003-08-29 07:56:49 +00:00
Dana Jansens
3c5f6db04c remove the event dispatcher 2003-08-29 06:52:55 +00:00
Dana Jansens
5e06be6abb add window placement routines to the kernel 2003-08-29 06:40:35 +00:00
Dana Jansens
f7eb47dba4 make client-list-menu work too
more menu cleanups
2003-08-28 07:34:03 +00:00
Dana Jansens
615cbd9607 change the menu plugin interface, no need for the create/destroy functions any more.
redo the client-menu plugin to work with the new menu api
2003-08-28 05:44:13 +00:00
Dana Jansens
c34ef4028e half way through the changes to new menu code/design. hot shit. static menus work, on to plugins next. 2003-08-28 02:10:23 +00:00
Dana Jansens
cbd0e4d308 add the client_list_menu plugin 2003-08-14 06:01:39 +00:00
Dana Jansens
35ed95fe18 move the resistance plugin into the kernel. dont resist when move/resizing with the keyboard, only when doing it with the mouse. 2003-08-12 19:57:04 +00:00
Dana Jansens
1045079482 adjust for changes to the parsing api.
split the menu into its own file.
2003-08-12 19:18:21 +00:00
Dana Jansens
c90da6da78 move the keyboard and mouse plugins into the kernel for mucho sexiness.
make workspace changing a grabbed/interactive process like focus cycling is, with the popup and all.
this is some hot shit.
2003-08-12 07:26:16 +00:00
Dana Jansens
75bd479545 add the om4ob theme 2003-08-02 08:43:51 +00:00
Dana Jansens
b972055c9a rename stick buttons to desk 2003-08-01 18:11:42 +00:00
Dana Jansens
dd3ca168af make obconf_interface.h belong to the obconf sources 2003-08-01 15:09:33 +00:00
Dana Jansens
c05ad7a36a install the .desktop file again 2003-08-01 15:00:09 +00:00
Dana Jansens
d6559d02a8 install greenz theme 2003-08-01 14:21:59 +00:00
Dana Jansens
6b606a098f s/_t.xbm/_toggled.xbm/ 2003-08-01 07:09:34 +00:00
Dana Jansens
4d9bd88f12 make themes inside a directory 2003-08-01 06:10:59 +00:00
Dana Jansens
759565a70e add the kdetrayproxy tool 2003-08-01 05:00:23 +00:00
Dana Jansens
a354b0f5a9 restarting work on obconf 2003-07-26 07:44:15 +00:00
Dana Jansens
04a44af3c4 save and load the session save file, though its data is not used yet! 2003-07-24 18:19:26 +00:00
Dana Jansens
aca18d48b9 use rm -f 2003-07-23 18:42:29 +00:00
Dana Jansens
2c92ab7679 include obconf_interface.h in the dist 2003-07-23 12:51:44 +00:00
Dana Jansens
0554ab0cb9 remove headers that dont exist 2003-07-23 04:16:19 +00:00
Scott Moynes
68c910b194 Added include_menu.c as an example of how one could write a plugin. 2003-07-23 02:01:56 +00:00
Dana Jansens
375b504905 add the new misc.h and mwm.h to the kernel sources 2003-07-10 06:23:54 +00:00
Dana Jansens
2abbf01125 update the build system, using a single Makefile.am for a sexyass non-recursive make. booyah! 2003-07-10 04:31:05 +00:00
Dana Jansens
2f9efb384d prepare for alpha1 release.
make 'make dist' work.
2003-06-29 08:47:24 +00:00
Dana Jansens
d1e355de2c this is a big one! im putting stats in here just cuz!
59 files changed, 1691 insertions(+), 607 deletions(-)
Adding the beginings of ObConf. Adding a resistance-config plugin for ObConf.
Creating an obparser library that obrender can use, the kernel can use, plugins can use, and ObConf and its plugins can use. (its just code for using libXml2)
2003-05-24 21:47:06 +00:00
Dana Jansens
66899a4eb5 rm the tools dir 2003-05-10 21:33:21 +00:00
Dana Jansens
f26f23de50 all my changes while i was offline.
better alt-tabbing. better transient handling. i dont even know. lots of fucking cool shit so WATCH the FUCK OUT.
2003-05-09 16:57:17 +00:00
Dana Jansens
dfc9680e33 back to automake 2003-04-13 21:17:02 +00:00
Dana Jansens
d447dc0f59 new build system without automake 2003-04-03 05:59:03 +00:00
Dana Jansens
9b33f7ded6 stop using python internally. add an event dispatcher 2003-03-17 19:54:37 +00:00
Dana Jansens
f8a47de5ec merge the C branch into HEAD 2003-03-16 21:11:39 +00:00
Dana Jansens
7fe3301e7e Add the "obsetroot" tool. Use it to set the root background. 2003-02-14 23:05:59 +00:00
Dana Jansens
c3e4f97d87 make "make dist" work, compiler flags cleanups 2003-02-06 06:19:46 +00:00
Dana Jansens
37050803a6 rm this thing 2003-02-05 16:44:12 +00:00
Dana Jansens
67fbe8354f dont make wrap a subdir of otk 2003-02-05 10:48:37 +00:00
Dana Jansens
ee356f4265 remove LICENSE from the dist files 2003-01-29 19:26:35 +00:00
Dana Jansens
bbb403aab8 add buttons to the tree.rm stupid comments in Makefile.ams 2003-01-04 18:42:25 +00:00
Dana Jansens
e32610e7b1 better support for gettext 2002-12-26 11:58:57 +00:00
Dana Jansens
b34824a4e2 global python scripts. client motion/resizing is all done via python now 2002-12-25 04:54:44 +00:00
Dana Jansens
b5bff9534f add doxygen to the project. 'make doc' builds the doxygen stuff. you need doxygen and graphviz installed to generate it properly 2002-11-04 01:20:02 +00:00
Dana Jansens
9259ec5732 new timer infrastructure. takes a function pointer for the timeout, with a void* parameter (useful for holding a class instance!) 2002-11-03 14:29:34 +00:00
Dana Jansens
643fbfa7be not using admin/ dir anymore 2002-11-02 20:29:32 +00:00
Dana Jansens
6b905206e2 make gettext better. updates for autoconf 2002-11-01 10:50:57 +00:00
Dana Jansens
90f2414285 add gettext
change CXXFLAGS back to CPPFLAGS in the .am's
2002-11-01 10:08:32 +00:00
Marius Nita
35462479fc changed for toolkit 2002-11-01 03:32:58 +00:00
Dana Jansens
7bf96a9123 compiles now. uses xft2
remove the nls remainders
2002-10-31 08:42:45 +00:00
Dana Jansens
7a55323343 syching with bb-cvs. rm .\#* on make dist-clean. nls updates. 2002-06-05 03:51:26 +00:00
Dana Jansens
7ca4d98726 new root dir based on bb-cvs 2002-05-24 22:59:42 +00:00
Dana Jansens
dfc5f03458 Initial revision 2002-04-11 03:20:38 +00:00