blob: e6162c2c4d5a970cf1d1e96bd46b29dcd209a3a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// load_config.h
//
// Copyright 2000 Daniel Burrows
//
#ifndef LOAD_CONFIG_H
#define LOAD_CONFIG_H
#include <cwidget/config/keybindings.h>
/** \brief Provides routines to load in the vscreen frontend's configuration.
*
* \file load_config.h
*/
void load_styles(std::string group, bool usetheme);
// Loads in color definitions from the given group.
void load_bindings(std::string group, cwidget::config::keybindings *toload, bool usetheme);
// Loads values from the given APT configuration group into the given
// keybindings.
#endif
|