all repos — fluxbox @ e0a6ffb10320207f351cf20eb9465fd791636d90

custom fork of the fluxbox windowmanager

minor style fixes and added groupfile resources
fluxgen fluxgen
commit

e0a6ffb10320207f351cf20eb9465fd791636d90

parent

54f565b7e30ef6f7a0127bc925a81d6323e42f8b

1 files changed, 24 insertions(+), 23 deletions(-)

jump to
M src/fluxbox.hhsrc/fluxbox.hh

@@ -22,11 +22,24 @@ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING

// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. -// $Id: fluxbox.hh,v 1.22 2002/08/04 15:55:13 fluxgen Exp $ +// $Id: fluxbox.hh,v 1.23 2002/08/11 20:36:43 fluxgen Exp $ #ifndef FLUXBOX_HH #define FLUXBOX_HH +#include "Resource.hh" +#include "Keys.hh" +#include "BaseDisplay.hh" +#include "Image.hh" +#include "Timer.hh" +#include "Window.hh" +#include "Tab.hh" +#include "Toolbar.hh" + +#ifdef SLIT +#include "Slit.hh" +#endif // SLIT + #include <X11/Xlib.h> #include <X11/Xresource.h>

@@ -34,28 +47,16 @@ #ifdef HAVE_STDIO_H

# include <stdio.h> #endif // HAVE_STDIO_H -#ifdef TIME_WITH_SYS_TIME -# include <sys/time.h> -# include <time.h> +#ifdef TIME_WITH_SYS_TIME +#include <sys/time.h> +#include <time.h> #else // !TIME_WITH_SYS_TIME -# ifdef HAVE_SYS_TIME_H -# include <sys/time.h> -# else // !HAVE_SYS_TIME_H -# include <time.h> -# endif // HAVE_SYS_TIME_H +#ifdef HAVE_SYS_TIME_H +#include <sys/time.h> +#else // !HAVE_SYS_TIME_H +#include <time.h> +#endif // HAVE_SYS_TIME_H #endif // TIME_WITH_SYS_TIME - -#include "Resource.hh" -#include "Keys.hh" -#include "BaseDisplay.hh" -#include "Image.hh" -#include "Timer.hh" -#include "Window.hh" -#include "Tab.hh" -#include "Toolbar.hh" -#ifdef SLIT -# include "Slit.hh" -#endif // SLIT #include <string> #include <vector>

@@ -193,12 +194,12 @@ //--- Resources

Resource<bool> m_rc_tabs, m_rc_iconbar; Resource<int> m_rc_colors_per_channel; Resource<std::string> m_rc_stylefile, - m_rc_menufile, m_rc_keyfile, m_rc_slitlistfile; + m_rc_menufile, m_rc_keyfile, m_rc_slitlistfile, + m_rc_groupfile; Resource<TitlebarList> m_rc_titlebar_left, m_rc_titlebar_right; Resource<unsigned int> m_rc_cache_life, m_rc_cache_max; - //std::vector<std::string> parseTitleArgs(const char *arg); void setTitlebar(std::vector<Fluxbox::Titlebar>& dir, const char *arg); std::map<Window, FluxboxWindow *> windowSearch;