125bec6974
Faenza, Oxygen and Tango use it, and Elementary will.
39 lines
1.5 KiB
C
39 lines
1.5 KiB
C
/*
|
|
Copyright (C) 2007-2008 Christian Dywan <christian@twotoasts.de>
|
|
|
|
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.
|
|
|
|
See the file COPYING for the full license text.
|
|
*/
|
|
|
|
#ifndef __MIDORI_STOCK_H__
|
|
#define __MIDORI_STOCK_H__ 1
|
|
|
|
/* Stock items */
|
|
|
|
#define STOCK_BOOKMARKS "user-bookmarks"
|
|
#define STOCK_EXTENSION "extension"
|
|
#define STOCK_HISTORY "document-open-recent"
|
|
#define STOCK_WEB_BROWSER "web-browser"
|
|
#define STOCK_NEWS_FEED "internet-news-reader"
|
|
#define STOCK_STYLE "preferences-desktop-theme"
|
|
#define STOCK_TRANSFER "package"
|
|
#define STOCK_PLUGINS "application-x-shockwave-flash"
|
|
#define STOCK_BOOKMARK_ADD "bookmark-new"
|
|
#define STOCK_IMAGE "image-x-generic"
|
|
#define STOCK_NETWORK_OFFLINE "network-offline"
|
|
#define STOCK_SCRIPT "text-x-javascript"
|
|
#define STOCK_SEND "mail-send"
|
|
#define STOCK_TAB_NEW "tab-new"
|
|
#define STOCK_USER_TRASH "user-trash"
|
|
#define STOCK_WINDOW_NEW "window-new"
|
|
#define STOCK_FOLDER_NEW "folder-new"
|
|
#define STOCK_EDIT_CLEAR "edit-clear"
|
|
#define STOCK_EDIT_FIND "edit-find"
|
|
#define STOCK_STOP "stop"
|
|
#define STOCK_URL "text-html"
|
|
|
|
#endif /* !__MIDORI_STOCK_H__ */
|