2005-06-22 11:20:32 -07:00
|
|
|
/*
|
|
|
|
* mooutils/moostock.h
|
|
|
|
*
|
2006-02-23 06:03:17 -08:00
|
|
|
* Copyright (C) 2004-2006 by Yevgen Muntyan <muntyan@math.tamu.edu>
|
2005-06-22 11:20:32 -07:00
|
|
|
*
|
|
|
|
* 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-10-13 07:08:18 -07:00
|
|
|
#include <gtk/gtkstock.h>
|
|
|
|
#include <gtk/gtkiconfactory.h>
|
2005-08-05 04:54:21 -07:00
|
|
|
|
|
|
|
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_KEYBOARD GTK_STOCK_SELECT_FONT
|
2006-02-25 14:37:00 -08:00
|
|
|
#define MOO_STOCK_MENU GTK_STOCK_INDEX
|
2005-10-13 07:08:18 -07:00
|
|
|
#define MOO_STOCK_RESTART GTK_STOCK_REFRESH
|
2005-08-05 04:54:21 -07:00
|
|
|
#define MOO_STOCK_CLOSE "moo-close"
|
|
|
|
#define MOO_STOCK_STICKY "moo-sticky"
|
2005-08-31 09:55:02 -07:00
|
|
|
#define MOO_STOCK_DETACH "moo-detach"
|
|
|
|
#define MOO_STOCK_ATTACH "moo-attach"
|
|
|
|
#define MOO_STOCK_KEEP_ON_TOP "moo-keep-on-top"
|
2005-06-22 11:20:32 -07:00
|
|
|
|
2005-09-03 09:39:51 -07:00
|
|
|
#define MOO_STOCK_DOC_DELETED GTK_STOCK_DIALOG_ERROR
|
|
|
|
#define MOO_STOCK_DOC_MODIFIED_ON_DISK GTK_STOCK_DIALOG_WARNING
|
|
|
|
#define MOO_STOCK_DOC_MODIFIED GTK_STOCK_SAVE
|
|
|
|
|
2005-11-30 08:46:02 -08:00
|
|
|
#define MOO_STOCK_FILE_SELECTOR "gtk-directory"
|
2005-09-04 11:41:13 -07:00
|
|
|
|
2005-09-03 09:39:51 -07:00
|
|
|
#define MOO_STOCK_SAVE_NONE "moo-save-none"
|
|
|
|
#define MOO_STOCK_SAVE_SELECTED "moo-save-selected"
|
|
|
|
|
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-09-07 04:19:26 -07:00
|
|
|
#define MOO_STOCK_NEW_PROJECT "moo-new-project"
|
|
|
|
#define MOO_STOCK_OPEN_PROJECT "moo-open-project"
|
|
|
|
#define MOO_STOCK_CLOSE_PROJECT "moo-close-project"
|
|
|
|
#define MOO_STOCK_PROJECT_OPTIONS "moo-project-options"
|
|
|
|
#define MOO_STOCK_BUILD "moo-build"
|
|
|
|
#define MOO_STOCK_COMPILE "moo-compile"
|
|
|
|
#define MOO_STOCK_EXECUTE "moo-execute"
|
|
|
|
|
2005-09-11 10:51:34 -07:00
|
|
|
#define MOO_STOCK_FIND_IN_FILES "moo-find-in-files"
|
|
|
|
#define MOO_STOCK_FIND_FILE "moo-find-file"
|
2005-09-08 10:08:31 -07:00
|
|
|
|
2005-11-28 10:25:02 -08:00
|
|
|
#define MOO_STOCK_FILE_COPY "moo-file-copy"
|
|
|
|
#define MOO_STOCK_FILE_MOVE "moo-file-move"
|
|
|
|
#define MOO_STOCK_FILE_LINK "moo-file-link"
|
|
|
|
#define MOO_STOCK_FILE_SAVE_AS "moo-file-save-as"
|
|
|
|
#define MOO_STOCK_FILE_SAVE_COPY "moo-file-save-copy"
|
2005-11-27 20:36:27 -08:00
|
|
|
|
2005-12-10 23:23:59 -08:00
|
|
|
#define MOO_STOCK_EDIT_BOOKMARK "moo-edit-bookmark"
|
|
|
|
|
2005-09-16 15:35:16 -07:00
|
|
|
#define MOO_STOCK_PLUGINS GTK_STOCK_PREFERENCES
|
|
|
|
|
2005-09-07 04:19:26 -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 */
|