medit/moo/mooutils/moostock.h

41 lines
1.2 KiB
C
Raw Normal View History

2005-06-22 11:20:32 -07:00
/*
* mooutils/moostock.h
*
* Copyright (C) 2004-2005 by Yevgen Muntyan <muntyan@math.tamu.edu>
*
* 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.
*
* See COPYING file that comes with this distribution.
*/
#ifndef MOOUTILS_STOCK_H
#define MOOUTILS_STOCK_H
2005-08-05 04:54:21 -07:00
#include <gtk/gtk.h>
G_BEGIN_DECLS
2005-06-22 11:20:32 -07:00
#define MOO_STOCK_APP "moo-app"
#define MOO_STOCK_GAP "moo-gap"
#define MOO_STOCK_TERMINAL "moo-terminal"
#define MOO_STOCK_TERMINAL "moo-terminal"
#define MOO_STOCK_KEYBOARD GTK_STOCK_SELECT_FONT
#define MOO_STOCK_DOC_DELETED GTK_STOCK_DIALOG_ERROR
#define MOO_STOCK_DOC_MODIFIED_ON_DISK GTK_STOCK_DIALOG_WARNING
2005-08-05 04:54:21 -07:00
#define MOO_STOCK_CLOSE "moo-close"
#define MOO_STOCK_STICKY "moo-sticky"
2005-06-22 11:20:32 -07:00
2005-08-05 04:54:21 -07:00
#define MOO_ICON_SIZE_REAL_SMALL (moo_get_icon_size_real_small ())
2005-06-22 11:20:32 -07:00
2005-08-05 04:54:21 -07:00
void moo_create_stock_items (void);
GtkIconSize moo_get_icon_size_real_small (void) G_GNUC_CONST;
2005-06-22 11:20:32 -07:00
2005-08-05 04:54:21 -07:00
G_END_DECLS
2005-06-22 11:20:32 -07:00
#endif /* MOOUTILS_STOCK_H */