/usr/lib/ocaml/lablgtk2/gtkStock.ml is in liblablgtk2-ocaml-dev 2.16.0+dfsg-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 | (**************************************************************************)
(* Lablgtk *)
(* *)
(* This program is free software; you can redistribute it *)
(* and/or modify it under the terms of the GNU Library General *)
(* Public License as published by the Free Software Foundation *)
(* version 2, with the exception described in file COPYING which *)
(* comes with the library. *)
(* *)
(* 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 Library General Public License for more details. *)
(* *)
(* You should have received a copy of the GNU Library General *)
(* Public License along with this program; if not, write to the *)
(* Free Software Foundation, Inc., 59 Temple Place, Suite 330, *)
(* Boston, MA 02111-1307 USA *)
(* *)
(* *)
(**************************************************************************)
(* $Id$ *)
open Gobject
open Gtk
(** Stock Items: prebuilt common menu/toolbar items and corresponding icons *)
external _gtkstock_init : unit -> unit = "ml_gtkstock_init"
let () = _gtkstock_init ()
type gtk_stock_id = [
| `DIALOG_AUTHENTICATION (** since GTK 2.4 *)
| `DIALOG_INFO
| `DIALOG_WARNING
| `DIALOG_ERROR
| `DIALOG_QUESTION
| `DND
| `DND_MULTIPLE
| `ABOUT (** since GTK 2.6 *)
| `ADD
| `APPLY
| `BOLD
| `CANCEL
| `CDROM
| `CLEAR
| `CLOSE
| `COLOR_PICKER (** since GTK 2.2 *)
| `CONVERT
| `CONNECT (** since GTK 2.6 *)
| `COPY
| `CUT
| `DELETE
| `DIRECTORY (** since GTK 2.6 *)
| `DISCONNECT (** since GTK 2.6 *)
| `EDIT (** since GTK 2.6 *)
| `EXECUTE
| `FILE (** since GTK 2.6 *)
| `FIND
| `FIND_AND_REPLACE
| `FLOPPY
| `FULLSCREEN (** since GTK 2.8 *)
| `GOTO_BOTTOM
| `GOTO_FIRST
| `GOTO_LAST
| `GOTO_TOP
| `GO_BACK
| `GO_DOWN
| `GO_FORWARD
| `GO_UP
| `HARDDISK (** since GTK 2.4 *)
| `HELP
| `HOME
| `INDEX
| `INDENT (** since GTK 2.4 *)
| `UNINDENT (** since GTK 2.4 *)
| `INFO (** since GTK 2.8 *)
| `ITALIC
| `JUMP_TO
| `JUSTIFY_CENTER
| `JUSTIFY_FILL
| `JUSTIFY_LEFT
| `JUSTIFY_RIGHT
| `LEAVE_FULLSCREEN (** since GTK 2.8 *)
| `MISSING_IMAGE
| `MEDIA_FORWARD (** since GTK 2.6 *)
| `MEDIA_NEXT (** since GTK 2.6 *)
| `MEDIA_PAUSE (** since GTK 2.6 *)
| `MEDIA_PLAY (** since GTK 2.6 *)
| `MEDIA_PREVIOUS (** since GTK 2.6 *)
| `MEDIA_RECORD (** since GTK 2.6 *)
| `MEDIA_REWIND (** since GTK 2.6 *)
| `MEDIA_STOP (** since GTK 2.6 *)
| `NETWORK (** since GTK 2.4 *)
| `NEW
| `NO
| `OK
| `OPEN
| `ORIENTATION_LANDSCAPE (** since GTK 2.10 *)
| `ORIENTATION_PORTRAIT (** since GTK 2.10 *)
| `ORIENTATION_REVERSE_LANDSCAPE (** since GTK 2.10 *)
| `ORIENTATION_REVERSE_PORTRAIT (** since GTK 2.10 *)
| `PASTE
| `PREFERENCES
| `PRINT
| `PRINT_PREVIEW
| `PROPERTIES
| `QUIT
| `REDO
| `REFRESH
| `REMOVE
| `REVERT_TO_SAVED
| `SAVE
| `SAVE_AS
| `SELECT_ALL (** since GTK 2.10 *)
| `SELECT_COLOR
| `SELECT_FONT
| `SORT_ASCENDING
| `SORT_DESCENDING
| `SPELL_CHECK
| `STOP
| `STRIKETHROUGH
| `UNDELETE
| `UNDERLINE
| `UNDO
| `YES
| `ZOOM_100
| `ZOOM_FIT
| `ZOOM_IN
| `ZOOM_OUT
]
type id = [gtk_stock_id | `STOCK of string]
let id_table = Hashtbl.create 37
let convert_id : id -> string = function
| `STOCK s -> s
| id -> Hashtbl.find id_table id
let conv =
{ kind = `STRING;
proj = (function `STRING (Some s) -> `STOCK s
| _ -> failwith "GtkStock.get_id");
inj = (fun id -> `STRING (Some (convert_id id))) }
(* awk '/^#define GTK_STOCK_/ { sub(/GTK_STOCK_/, "", $2) ; print "`" $2 ", " $3 ";"}' /mnt/garnome/root-cvs/include/gtk-2.0/gtk/gtkstock.h *)
let () =
List.iter (fun (k,d) -> Hashtbl.add id_table k d)
[
`DIALOG_AUTHENTICATION, "gtk-dialog-authentication";
`DIALOG_INFO, "gtk-dialog-info";
`DIALOG_WARNING, "gtk-dialog-warning";
`DIALOG_ERROR, "gtk-dialog-error";
`DIALOG_QUESTION, "gtk-dialog-question";
`DND, "gtk-dnd";
`DND_MULTIPLE, "gtk-dnd-multiple";
`ABOUT, "gtk-about";
`ADD, "gtk-add";
`APPLY, "gtk-apply";
`BOLD, "gtk-bold";
`CANCEL, "gtk-cancel";
`CDROM, "gtk-cdrom";
`CLEAR, "gtk-clear";
`CLOSE, "gtk-close";
`COLOR_PICKER, "gtk-color-picker";
`CONVERT, "gtk-convert";
`CONNECT, "gtk-connect";
`COPY, "gtk-copy";
`CUT, "gtk-cut";
`DELETE, "gtk-delete";
`DIRECTORY, "gtk-directory";
`DISCONNECT, "gtk-disconnect";
`EDIT, "gtk-edit";
`EXECUTE, "gtk-execute";
`FILE, "gtk-file";
`FIND, "gtk-find";
`FIND_AND_REPLACE, "gtk-find-and-replace";
`FLOPPY, "gtk-floppy";
`FULLSCREEN, "gtk-fullscreen";
`GOTO_BOTTOM, "gtk-goto-bottom";
`GOTO_FIRST, "gtk-goto-first";
`GOTO_LAST, "gtk-goto-last";
`GOTO_TOP, "gtk-goto-top";
`GO_BACK, "gtk-go-back";
`GO_DOWN, "gtk-go-down";
`GO_FORWARD, "gtk-go-forward";
`GO_UP, "gtk-go-up";
`HARDDISK, "gtk-harddisk";
`HELP, "gtk-help";
`HOME, "gtk-home";
`INDEX, "gtk-index";
`INDENT, "gtk-indent";
`INFO, "gtk-info";
`UNINDENT, "gtk-unindent";
`ITALIC, "gtk-italic";
`JUMP_TO, "gtk-jump-to";
`JUSTIFY_CENTER, "gtk-justify-center";
`JUSTIFY_FILL, "gtk-justify-fill";
`JUSTIFY_LEFT, "gtk-justify-left";
`JUSTIFY_RIGHT, "gtk-justify-right";
`LEAVE_FULLSCREEN, "gtk-leave-fullscreen"; (*@ *)
`MISSING_IMAGE, "gtk-missing-image";
`MEDIA_FORWARD, "gtk-media-forward";
`MEDIA_NEXT, "gtk-media-next";
`MEDIA_PAUSE, "gtk-media-pause";
`MEDIA_PLAY, "gtk-media-play";
`MEDIA_PREVIOUS, "gtk-media-previous";
`MEDIA_RECORD, "gtk-media-record";
`MEDIA_REWIND, "gtk-media-rewind";
`MEDIA_STOP, "gtk-media-stop";
`NETWORK, "gtk-network";
`NEW, "gtk-new";
`NO, "gtk-no";
`OK, "gtk-ok";
`OPEN, "gtk-open";
`ORIENTATION_PORTRAIT, "gtk-orientation-portrait";
`ORIENTATION_LANDSCAPE, "gtk-orientation-landscape";
`ORIENTATION_REVERSE_LANDSCAPE, "gtk-orientation-reverse-landscape";
`ORIENTATION_REVERSE_PORTRAIT, "gtk-orientation-reverse-portrait";
`PASTE, "gtk-paste";
`PREFERENCES, "gtk-preferences";
`PRINT, "gtk-print";
`PRINT_PREVIEW, "gtk-print-preview";
`PROPERTIES, "gtk-properties";
`QUIT, "gtk-quit";
`REDO, "gtk-redo";
`REFRESH, "gtk-refresh";
`REMOVE, "gtk-remove";
`REVERT_TO_SAVED, "gtk-revert-to-saved";
`SAVE, "gtk-save";
`SAVE_AS, "gtk-save-as";
`SELECT_ALL, "gtk-select-all"; (*@ *)
`SELECT_COLOR, "gtk-select-color";
`SELECT_FONT, "gtk-select-font";
`SORT_ASCENDING, "gtk-sort-ascending";
`SORT_DESCENDING, "gtk-sort-descending";
`SPELL_CHECK, "gtk-spell-check";
`STOP, "gtk-stop";
`STRIKETHROUGH, "gtk-strikethrough";
`UNDELETE, "gtk-undelete";
`UNDERLINE, "gtk-underline";
`UNDO, "gtk-undo";
`YES, "gtk-yes";
`ZOOM_100, "gtk-zoom-100";
`ZOOM_FIT, "gtk-zoom-fit";
`ZOOM_IN, "gtk-zoom-in";
`ZOOM_OUT, "gtk-zoom-out";
]
module Icon_source = struct
external new_icon_source : unit -> icon_source = "ml_gtk_icon_source_new"
external set_filename : icon_source -> string -> unit = "ml_gtk_icon_source_set_filename"
external set_pixbuf : icon_source -> GdkPixbuf.pixbuf -> unit = "ml_gtk_icon_source_set_pixbuf"
external set_direction_wildcarded : icon_source -> bool -> unit = "ml_gtk_icon_source_set_direction_wildcarded"
external set_state_wildcarded : icon_source -> bool -> unit = "ml_gtk_icon_source_set_state_wildcarded"
external set_size_wildcarded : icon_source -> bool -> unit = "ml_gtk_icon_source_set_size_wildcarded"
external set_direction : icon_source -> Gtk.Tags.text_direction -> unit = "ml_gtk_icon_source_set_direction"
external set_state : icon_source -> Gtk.Tags.state_type -> unit = "ml_gtk_icon_source_set_state"
external set_size : icon_source -> Gtk.Tags.icon_size -> unit = "ml_gtk_icon_source_set_size"
end
module Icon_set = struct
external new_icon_set : unit -> icon_set = "ml_gtk_icon_set_new"
external new_from_pixbuf : GdkPixbuf.pixbuf -> icon_set = "ml_gtk_icon_set_new_from_pixbuf"
external add_source : icon_set -> icon_source -> unit = "ml_gtk_icon_set_add_source"
external get_sizes : icon_set -> Gtk.Tags.icon_size list = "ml_gtk_icon_set_get_sizes"
end
module Icon_factory = struct
external new_factory : unit -> icon_factory = "ml_gtk_icon_factory_new"
external add : icon_factory -> string -> icon_set -> unit = "ml_gtk_icon_factory_add"
external lookup : icon_factory -> string -> icon_set = "ml_gtk_icon_factory_lookup"
external add_default : icon_factory -> unit = "ml_gtk_icon_factory_add_default"
external remove_default : icon_factory -> unit = "ml_gtk_icon_factory_remove_default"
external lookup_default : string -> icon_set = "ml_gtk_icon_factory_lookup_default"
end
let make_icon_source ?filename ?pixbuf ?direction ?state ?size () =
let s = Icon_source.new_icon_source () in
Gaux.may (Icon_source.set_filename s) filename ;
Gaux.may (Icon_source.set_pixbuf s) pixbuf ;
Gaux.may (fun p -> Icon_source.set_direction_wildcarded s false ;
Icon_source.set_direction s p) direction ;
Gaux.may (fun p -> Icon_source.set_state_wildcarded s false ;
Icon_source.set_state s p) state ;
Gaux.may (fun p -> Icon_source.set_size_wildcarded s false ;
Icon_source.set_size s p) size ;
s
let make_icon_set ?pixbuf sources =
let s = match pixbuf with
| None -> Icon_set.new_icon_set ()
| Some pb -> Icon_set.new_from_pixbuf pb in
List.iter (Icon_set.add_source s) sources ;
s
let make_icon_factory ?(default = true) ?icons () =
let f = Icon_factory.new_factory () in
Gaux.may icons
~f:(List.iter (fun (n, i) -> Icon_factory.add f (convert_id n) i)) ;
if default then Icon_factory.add_default f ;
f
type item = {
stock_id : string ;
label : string ;
modifier : Gdk.Tags.modifier list ;
keyval : Gdk.keysym ;
}
module Item = struct
external add : item -> unit = "ml_gtk_stock_add"
external list_ids : unit -> string list = "ml_gtk_stock_list_ids"
external lookup : string -> item = "ml_gtk_stock_lookup"
let lookup id = lookup (convert_id id)
end
|