/usr/include/buffy/config/config.h is in libbuffy-dev 1.9.2-2build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 | #ifndef BUFFY_CONFIG_CONFIG_H
#define BUFFY_CONFIG_CONFIG_H
/*
* Copyright (C) 2004--2008 Enrico Zini <enrico@enricozini.org>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include <string>
#include <vector>
struct _GKeyFile;
typedef struct _GKeyFile GKeyFile;
namespace buffy {
struct MailFolder;
namespace config {
class Config;
class Section
{
protected:
Config& cfg;
std::string section;
Section(Config& cfg, const std::string& section);
std::string getval(GKeyFile* cfg, const std::string& name) const;
public:
bool isSet(const std::string& name);
void unset(const std::string& name);
bool getBool(const std::string& name) const;
void setBool(const std::string& name, bool val);
int getInt(const std::string& name) const;
void setInt(const std::string& name, int val);
std::string def(const std::string& name) const;
std::string get(const std::string& name) const;
void set(const std::string& name, const std::string& val);
void addDefault(const std::string& name, const std::string& val);
friend class Config;
};
class View : public Section
{
protected:
View(Config& cfg, const std::string& section);
public:
bool empty() const;
bool read() const;
bool important() const;
void setEmpty(bool val);
void setRead(bool val);
void setImportant(bool val);
friend class Config;
};
class General : public Section
{
protected:
General(Config& cfg, const std::string& section);
public:
int interval() const;
void setInterval(int val);
friend class Config;
};
class Folder : public Section
{
protected:
Folder(Config& cfg, const std::string& section);
public:
bool forceview() const;
bool forcehide() const;
void setForceView(bool val);
void setForceHide(bool val);
friend class Config;
};
class Location : public Section
{
protected:
Location(Config& cfg, const std::string& section);
public:
bool skip() const;
void setSkip(bool val);
friend class Config;
};
class MailProgram : public Section
{
protected:
std::string m_name;
MailProgram(const std::string& name, Config& cfg, const std::string& section);
void setSelected(bool val);
public:
std::string name() const;
std::string command(const std::string& type) const;
void setCommand(const std::string& type, const std::string& val);
bool selected() const;
void run(const buffy::MailFolder& folder, const std::string& cmdtype = "term");
friend class Config;
};
class Config
{
protected:
// State directory
std::string rcfile;
// Config file contents
GKeyFile* cfg;
// Default config values
GKeyFile* defaults;
void init();
/**
* Return the list of section names starting with the given prefix,
* merging names in defaults and cfg, and stripping the prefix.
*/
std::vector<std::string> secnames(const std::string& prefix);
public:
Config();
Config(const std::string& fname);
~Config();
void clear();
void load(const std::string& file);
void save();
void save(const std::string& file);
void dump();
//
// Accessors for specific nodes
//
View view();
General general();
Section application(const std::string& name);
std::vector<std::string> mailPrograms();
MailProgram mailProgram(const std::string& name);
MailProgram selectedMailProgram();
void selectMailProgram(const std::string& name);
Folder folder(const buffy::MailFolder& folder);
Folder folder(const std::string& folder);
std::vector<std::string> locations();
Location location(const std::string& location);
friend class Section;
};
}
}
// vim:set ts=4 sw=4:
#endif
|