summaryrefslogtreecommitdiff
path: root/openbox/openbox.c
AgeCommit message (Collapse)Author
2007-05-09dont use XKeysymToKeycode because valgrind says it is doing bad things, and ↵Dana Jansens
we have all the data we need anyways
2007-05-09use the keysyms instead of translating. waste.Dana Jansens
2007-05-09support for _NET_WM_USER_TIME_WINDOW round 2 ! yay abstractionDana Jansens
2007-05-07switch to using a command line variable instead, for the restart binary, ↵Dana Jansens
just remove it so its not given to the session manager and confuses things. drop the reconfigure notify pid for now
2007-05-07add .desktops for running Openbox, KDE/Openbox and GNOME/OpenboxDana Jansens
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-06don't translate message saying we can't translate messagesMikael Magnusson
2007-05-06a bunch of thigns got squashed into this commit.. sorry..Dana Jansens
1. soem bug fixes for window stacking 2. clarify some functions behavior with their names 3. add (untested) support for legacy fullscreen apps. i have no idea what they do on a multihead xinerama setup though and if this would help there or need some changes.
2007-05-06refactor all the session stuff. yay, it works properly now.Dana Jansens
make sessions save the desktop being displayed. can we get rid of config_firstdesk now? refactor startup a bit. focus the window that was focused when we were restarted. have clients properly restore their session state. add undecorated to the saved session state for clients.
2007-05-05change the --config-file to --config, which works differently..Dana Jansens
change the _OPENBOX_RC root property to _OPENBOX_CONFIG which is also different.
2007-05-05some changes to ConfigureRequest, based on what I found in FVWM.Dana Jansens
fix those stupid applications from moving accross the screen by the size of their decorations.
2007-05-05fixes to the properties and net_supported. a bunch weren't supported. better ↵Dana Jansens
checking at runtime to make sure everything is in the atom.
2007-05-04make the modifier key code a lot better...Dana Jansens
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-04-26add a separate font config for onscreendisplaysDana Jansens
change menutitle in the rc to menuheader fix up the xsd for fonts
2007-04-24consistencyDana Jansens
2007-04-24don't split strings inside _() across lines. change some of the text messagesDana Jansens
2007-04-231) translate all of openbox's outputDana Jansens
2) update copyrights. 3) make release. ok that part not quite yet.
2007-04-23only show debug messages if you enable it on command line and remove extra ↵Dana Jansens
newline
2007-04-221) get rid of menu titlesDana Jansens
2) let separators have labels, when they have a label, then they will appear like a menu title used to so if you want a menu title, you use a separator in the menu itself at the top more style work may be needed
2007-04-21add --debug-focusDana Jansens
add --config-file: to specify a config file to use. set OPENBOX_RC property on the root window containing the path of the RC file being the full path to the RC file being used by openbox
2007-04-21hide focus debugging messagesDana Jansens
2007-03-25return the old cursor. oopsDana Jansens
2007-03-25add support for the X Cursor library. this means a nicer cursor for startup ↵Dana Jansens
notification.
2007-03-18use const char*'s when we should beDana Jansens
2007-03-14oh, 2 things in this commit..Dana Jansens
1) THIS ONE IS IMPORTANT: don't set client->iconfied if the window is not actually going to be allowed to iconify. heh! 2) changes to focus fallback to avoid crashing and to avoid losing focus all at the same time.
2007-03-12update copyright notice in --version outputMikael Magnusson
2007-03-04use EXIT_SUCCESS. it's the same thing, but more correct.Dana Jansens
2007-03-04use ob_reconfigure/restart directly instead of actions and save a variableMikael Magnusson
2007-03-04use integers instead of atoms for the actual control actionMikael Magnusson
2007-03-04use the X protocol to reconfigure instead of signals, works over the network tooMikael Magnusson
2007-03-04oops... I'm combining two different things in this commit... so I'll try be ↵Dana Jansens
clear 1. when another wm requests to replace openbox, openbox exits. but the SM will just restart openbox unless we tell it not to. so now ob_exit_replace() will change the session manager's view of openbox to not restart it. that way the new WM will be able to run. 2. allow windows to move themselves off of the screen 90% of the way, if they really want to. but only 90% to the left, right, and bottom of the screen. it won't let the app move off the top of the screen on its own at all now, since hiding the titlebar on you without you being a part of the process is pretty darn evil! this is really to address bug # 2982 - for the tilda application. but i guess if windows really want to move off the screen, who's to say no? also, every other window manager will let them - except metacity won't let them on the left/top side of the screen.
2007-03-04Fonts are now going to be configured in the rc.xml file. The format is such asDana Jansens
<theme> ... <font place="ActiveWindow"> <name>arial,sans</name> <size>8</size> <weight>bold</weight> <slant>italic</slant> <shadow>yes</shadow> <shadowOffset>1</shadowOffset> <shadowTint>64</shadowTint> </font> </theme> Valid place="" are ActiveWindow, InactiveWindow, MenuTitle, and MenuItem. Only valid weight is "bold" Valid slants are "italic" and "oblique" shadowTint is a value between -100 and 100 size is the font size in points. pixelsize could possibly be added in the form of 8px, but it's not right now. the name can contain multiple families and they will all be used to match characters You can omit any fields and get the default for it. You can omit naming a font for a place="" and get the default font for it. This is completely replacing theme-specified fonts, for better or for worse. Font shadowing may go back into the theme at some point, instead of in the rc.xml.
2007-03-03let the configuration file changes affect windows' decroations and ↵Dana Jansens
functionality on reconfigure (fix keepBorder bug 2841
2007-03-03ok this time for real...Dana Jansens
add --reconfigure option to openbox. this option will open the display, find the current openbox's PID from the root window, and send a SIGUSR2 to it, telling it to reconfigure. then it exits. also no longer printing help if you pass an invalid argument to openbox (because i want to parse arguments for --reconfigure before i start up the session management stuff)
2007-03-03reverse that last commit.. that was by accident..Dana Jansens
2007-03-03add --reconfigure option to openbox.Dana Jansens
this option will open the display, find the current openbox's PID from the root window, and send a SIGUSR2 to it, telling it to reconfigure. then it exits. no longer printing help if you pass an invalid argument to openbox since that is the case, session_startup doesnt need to be modifying the args anymore
2007-03-03why aren't these variables getting initialized. how exactly is openbox not ↵Dana Jansens
being super strange without that..?
2006-08-22update copyright step 1Mikael Magnusson
2006-08-17close but not quiteMikael Magnusson
2006-08-17add a client destructor to frame.c so it doesn't try to keep flashing a ↵Mikael Magnusson
free'd frame
2005-04-01nullterminate arguments to execlpMikael Magnusson
2004-03-21that looked a bit sillyMikael Magnusson
2004-03-21update copyright noticesMikael Magnusson
2004-03-20whitespace changesMikael Magnusson
2003-12-22dont have glib reap children, we shall reap them instead to avoid zombies ↵Dana Jansens
from processes tranferred to us
2003-10-25show a message if chdir() failsDana Jansens
2003-10-25free the GErrrorDana Jansens
2003-10-15consistant glib type usageDana Jansens
2003-10-15print the signal handler messages only when debuggingDana Jansens
2003-10-11remove XXXDana Jansens
2003-10-10same shit different pileDana Jansens