slit order filename
This commit is contained in:
parent
095ed342bd
commit
ffbf15dd45
2 changed files with 27 additions and 5 deletions
|
@ -22,7 +22,7 @@
|
||||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||||
// DEALINGS IN THE SOFTWARE.
|
// DEALINGS IN THE SOFTWARE.
|
||||||
|
|
||||||
// $Id: fluxbox.cc,v 1.59 2002/05/24 13:25:25 fluxgen Exp $
|
// $Id: fluxbox.cc,v 1.60 2002/05/29 06:22:31 fluxgen Exp $
|
||||||
|
|
||||||
//Use GNU extensions
|
//Use GNU extensions
|
||||||
#ifndef _GNU_SOURCE
|
#ifndef _GNU_SOURCE
|
||||||
|
@ -300,6 +300,7 @@ m_rc_colors_per_channel(m_resourcemanager, 4, "session.colorsPerChannel", "Sessi
|
||||||
m_rc_stylefile(m_resourcemanager, "", "session.styleFile", "Session.StyleFile"),
|
m_rc_stylefile(m_resourcemanager, "", "session.styleFile", "Session.StyleFile"),
|
||||||
m_rc_menufile(m_resourcemanager, DEFAULTMENU, "session.menuFile", "Session.MenuFile"),
|
m_rc_menufile(m_resourcemanager, DEFAULTMENU, "session.menuFile", "Session.MenuFile"),
|
||||||
m_rc_keyfile(m_resourcemanager, DEFAULTKEYSFILE, "session.keyFile", "Session.KeyFile"),
|
m_rc_keyfile(m_resourcemanager, DEFAULTKEYSFILE, "session.keyFile", "Session.KeyFile"),
|
||||||
|
m_rc_slitlistfile(m_resourcemanager, "", "session.slitlistFile", "Session.SlitlistFile"),
|
||||||
m_rc_titlebar_left(m_resourcemanager, TitlebarList(&m_titlebar_left[0], &m_titlebar_left[1]), "session.titlebar.left", "Session.Titlebar.Left"),
|
m_rc_titlebar_left(m_resourcemanager, TitlebarList(&m_titlebar_left[0], &m_titlebar_left[1]), "session.titlebar.left", "Session.Titlebar.Left"),
|
||||||
m_rc_titlebar_right(m_resourcemanager, TitlebarList(&m_titlebar_right[0], &m_titlebar_right[3]), "session.titlebar.right", "Session.Titlebar.Right"),
|
m_rc_titlebar_right(m_resourcemanager, TitlebarList(&m_titlebar_right[0], &m_titlebar_right[3]), "session.titlebar.right", "Session.Titlebar.Right"),
|
||||||
m_rc_cache_life(m_resourcemanager, 5, "session.cacheLife", "Session.CacheLife"),
|
m_rc_cache_life(m_resourcemanager, 5, "session.cacheLife", "Session.CacheLife"),
|
||||||
|
@ -415,7 +416,7 @@ void Fluxbox::setupConfigFiles() {
|
||||||
createInit = createKeys = createMenu = false;
|
createInit = createKeys = createMenu = false;
|
||||||
|
|
||||||
string dirname = getenv("HOME")+string("/.")+string(RC_PATH) + "/";
|
string dirname = getenv("HOME")+string("/.")+string(RC_PATH) + "/";
|
||||||
string initFile, keysFile, menuFile;
|
string initFile, keysFile, menuFile, slitlistFile;
|
||||||
initFile = dirname+RC_INIT_FILE;
|
initFile = dirname+RC_INIT_FILE;
|
||||||
keysFile = dirname+"keys";
|
keysFile = dirname+"keys";
|
||||||
menuFile = dirname+"menu";
|
menuFile = dirname+"menu";
|
||||||
|
@ -1923,6 +1924,13 @@ char *Fluxbox::getRcFilename() {
|
||||||
return dbfile;
|
return dbfile;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//-------- getDefaultDataFilename -------------
|
||||||
|
// Provides default filename of data file
|
||||||
|
//---------------------------------------------
|
||||||
|
void Fluxbox::getDefaultDataFilename(char *name, string &filename) {
|
||||||
|
filename = string(getenv("HOME")+string("/.")+RC_PATH+string("/")+name);
|
||||||
|
}
|
||||||
|
|
||||||
void Fluxbox::load_rc(void) {
|
void Fluxbox::load_rc(void) {
|
||||||
XrmDatabaseHelper database;
|
XrmDatabaseHelper database;
|
||||||
|
|
||||||
|
@ -1953,6 +1961,17 @@ void Fluxbox::load_rc(void) {
|
||||||
} else
|
} else
|
||||||
m_rc_menufile.setDefaultValue();
|
m_rc_menufile.setDefaultValue();
|
||||||
|
|
||||||
|
if (m_rc_slitlistfile->size()) {
|
||||||
|
char *tmpvar =StringUtil::expandFilename(m_rc_slitlistfile->c_str());
|
||||||
|
*m_rc_slitlistfile = (tmpvar==0 ? "" : tmpvar);
|
||||||
|
delete [] tmpvar;
|
||||||
|
}
|
||||||
|
if (!m_rc_slitlistfile->size()) {
|
||||||
|
string filename;
|
||||||
|
getDefaultDataFilename("slitlist", filename);
|
||||||
|
m_rc_slitlistfile.setFromString(filename.c_str());
|
||||||
|
}
|
||||||
|
|
||||||
if (*m_rc_colors_per_channel < 2)
|
if (*m_rc_colors_per_channel < 2)
|
||||||
*m_rc_colors_per_channel = 2;
|
*m_rc_colors_per_channel = 2;
|
||||||
else if (*m_rc_colors_per_channel > 6)
|
else if (*m_rc_colors_per_channel > 6)
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||||
// DEALINGS IN THE SOFTWARE.
|
// DEALINGS IN THE SOFTWARE.
|
||||||
|
|
||||||
// $Id: fluxbox.hh,v 1.19 2002/05/17 11:07:36 fluxgen Exp $
|
// $Id: fluxbox.hh,v 1.20 2002/05/29 06:22:31 fluxgen Exp $
|
||||||
|
|
||||||
#ifndef FLUXBOX_HH
|
#ifndef FLUXBOX_HH
|
||||||
#define FLUXBOX_HH
|
#define FLUXBOX_HH
|
||||||
|
@ -104,7 +104,7 @@ public:
|
||||||
inline const char *getStyleFilename(void) const { return m_rc_stylefile->c_str(); }
|
inline const char *getStyleFilename(void) const { return m_rc_stylefile->c_str(); }
|
||||||
|
|
||||||
inline const char *getMenuFilename(void) const { return m_rc_menufile->c_str(); }
|
inline const char *getMenuFilename(void) const { return m_rc_menufile->c_str(); }
|
||||||
|
inline const std::string &getSlitlistFilename(void) const { return *m_rc_slitlistfile; }
|
||||||
inline int getColorsPerChannel(void) const { return *m_rc_colors_per_channel; }
|
inline int getColorsPerChannel(void) const { return *m_rc_colors_per_channel; }
|
||||||
|
|
||||||
inline const timeval &getAutoRaiseDelay(void) const { return resource.auto_raise_delay; }
|
inline const timeval &getAutoRaiseDelay(void) const { return resource.auto_raise_delay; }
|
||||||
|
@ -124,6 +124,7 @@ public:
|
||||||
void saveStyleFilename(const char *val) { m_rc_stylefile = (val == 0 ? "" : val); }
|
void saveStyleFilename(const char *val) { m_rc_stylefile = (val == 0 ? "" : val); }
|
||||||
void saveMenuFilename(const char *);
|
void saveMenuFilename(const char *);
|
||||||
void saveTitlebarFilename(const char *);
|
void saveTitlebarFilename(const char *);
|
||||||
|
void saveSlitlistFilename(const char *val) { m_rc_slitlistfile = (val == 0 ? "" : val); }
|
||||||
void saveMenuSearch(Window, Basemenu *);
|
void saveMenuSearch(Window, Basemenu *);
|
||||||
void saveWindowSearch(Window, FluxboxWindow *);
|
void saveWindowSearch(Window, FluxboxWindow *);
|
||||||
void saveToolbarSearch(Window, Toolbar *);
|
void saveToolbarSearch(Window, Toolbar *);
|
||||||
|
@ -188,7 +189,7 @@ private:
|
||||||
Resource<bool> m_rc_tabs, m_rc_iconbar;
|
Resource<bool> m_rc_tabs, m_rc_iconbar;
|
||||||
Resource<int> m_rc_colors_per_channel;
|
Resource<int> m_rc_colors_per_channel;
|
||||||
Resource<std::string> m_rc_stylefile,
|
Resource<std::string> m_rc_stylefile,
|
||||||
m_rc_menufile, m_rc_keyfile;
|
m_rc_menufile, m_rc_keyfile, m_rc_slitlistfile;
|
||||||
|
|
||||||
Resource<TitlebarList> m_rc_titlebar_left, m_rc_titlebar_right;
|
Resource<TitlebarList> m_rc_titlebar_left, m_rc_titlebar_right;
|
||||||
Resource<unsigned int> m_rc_cache_life, m_rc_cache_max;
|
Resource<unsigned int> m_rc_cache_life, m_rc_cache_max;
|
||||||
|
@ -229,12 +230,14 @@ private:
|
||||||
char *rc_file, **argv;
|
char *rc_file, **argv;
|
||||||
int argc;
|
int argc;
|
||||||
Keys *key;
|
Keys *key;
|
||||||
|
std::string slitlist_path;
|
||||||
//default arguments for titlebar left and right
|
//default arguments for titlebar left and right
|
||||||
static Fluxbox::Titlebar m_titlebar_left[], m_titlebar_right[];
|
static Fluxbox::Titlebar m_titlebar_left[], m_titlebar_right[];
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
Fluxbox(int, char **, char * = 0, char * = 0);
|
Fluxbox(int, char **, char * = 0, char * = 0);
|
||||||
char *getRcFilename();
|
char *getRcFilename();
|
||||||
|
void getDefaultDataFilename(char *, std::string &);
|
||||||
void load_rc(void);
|
void load_rc(void);
|
||||||
|
|
||||||
void reload_rc(void);
|
void reload_rc(void);
|
||||||
|
|
Loading…
Reference in a new issue