Simple colour. More...
#include "config.h"
#include <stddef.h>
#include <stdbool.h>
#include "mutt/lib.h"
#include "gui/lib.h"
#include "lib.h"
Go to the source code of this file.
Functions | |
void | simple_colors_init (void) |
Initialise the simple colour definitions. More... | |
void | simple_colors_clear (void) |
Reset the simple colour definitions. More... | |
struct AttrColor * | simple_color_get (enum ColorId cid) |
Get the colour of an object by its ID. More... | |
bool | simple_color_is_set (enum ColorId cid) |
Is the object coloured? More... | |
bool | simple_color_is_header (enum ColorId cid) |
Colour is for an Email header. More... | |
struct AttrColor * | simple_color_set (enum ColorId cid, int fg, int bg, int attrs) |
Set the colour of a simple object. More... | |
void | simple_color_reset (enum ColorId cid) |
Clear the colour of a simple object. More... | |
Variables | |
struct AttrColor | SimpleColors [MT_COLOR_MAX] |
Array of Simple colours. More... | |
Simple colour.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.
Definition in file simple.c.
void simple_colors_init | ( | void | ) |
Initialise the simple colour definitions.
Definition at line 42 of file simple.c.
void simple_colors_clear | ( | void | ) |
Get the colour of an object by its ID.
cid | Colour Id, e.g. MT_COLOR_SEARCH |
ptr | AttrColor of the object |
Definition at line 74 of file simple.c.
bool simple_color_is_set | ( | enum ColorId | cid | ) |
Is the object coloured?
cid | Colour Id, e.g. MT_COLOR_SEARCH |
true | Yes, a 'color' command has been used on this object |
Definition at line 95 of file simple.c.
bool simple_color_is_header | ( | enum ColorId | cid | ) |
Colour is for an Email header.
cid | Colour Id, e.g. MT_COLOR_HEADER |
true | Colour is for an Email header |
Definition at line 105 of file simple.c.
Set the colour of a simple object.
cid | Colour Id, e.g. MT_COLOR_SEARCH |
fg | Foreground colour |
bg | Background colour |
attrs | Attributes, e.g. A_UNDERLINE |
ptr | Colour |
Definition at line 118 of file simple.c.
void simple_color_reset | ( | enum ColorId | cid | ) |
Clear the colour of a simple object.
cid | Colour Id, e.g. MT_COLOR_SEARCH |
Definition at line 144 of file simple.c.
struct AttrColor SimpleColors[MT_COLOR_MAX] |