suckless-utils/slim/cfg.h
Alexis Jhon Gaspar e1207e1d0d Added slim-fork to the repo
- This introduces a minimalist display manager for the suckless-utils suite
- Added crudely written scripts for reloaading slim's theme via pywal,
  meaning no on-the-fly reloading using keybinds as nost people wouldn't
have their sudo passwordless
- This is based on slim-fork 1.4.0 version.
2023-10-12 23:08:23 +08:00

59 lines
1.5 KiB
C++

/* SLiM - Simple Login Manager
Copyright (C) 2004-06 Simone Rota <sip@varlock.com>
Copyright (C) 2004-06 Johannes Winkelmann <jw@tks6.net>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
*/
#ifndef _CFG_H_
#define _CFG_H_
#include <string>
#include <map>
#include <vector>
#define INPUT_MAXLENGTH_NAME 30
#define INPUT_MAXLENGTH_PASSWD 50
#define CFGFILE SYSCONFDIR"/slim.conf"
#define THEMESDIR PKGDATADIR"/themes"
#define THEMESFILE "/slim.theme"
class Cfg
{
public:
Cfg();
~Cfg();
bool readConf(std::string configfile);
bool parseOption ( std::string line );
const std::string& getError() const;
std::string& getOption(std::string option);
int getIntOption(std::string option);
std::string getWelcomeMessage();
static int absolutepos(const std::string &position, int max, int width);
static int string2int(const char *string, bool *ok = 0);
static void split(std::vector<std::string> &v, const std::string &str,
char c, bool useEmpty=true);
static std::string Trim(const std::string &s);
std::pair<std::string,std::string> nextSession();
static std::string findValidRandomTheme(const std::string &set);
private:
void fillSessionList();
private:
std::map<std::string,std::string> options;
std::vector<std::pair<std::string,std::string> > sessions;
int currentSession;
std::string error;
};
#endif /* _CFG_H_ */