~ubuntu-branches/ubuntu/vivid/nip2/vivid-proposed

« back to all changes in this revision

Viewing changes to share/nip2/compat/7.16/Widgets.def

  • Committer: Bazaar Package Importer
  • Author(s): Michael Terry
  • Date: 2009-05-12 09:26:46 UTC
  • mfrom: (1.2.11 upstream) (2.1.4 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090512092646-j8lb1w2x69pvgma4
Tags: 7.18.1-1ubuntu1
* Merge from debian unstable (LP: #375435), remaining changes:
  - debian/control: Also Recommend abrowser

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Widget_slider_item = class 
 
2
        Menuaction "_Scale" "make a new scale widget" {
 
3
        icon = "nip-slider-16.png";
 
4
        action = Scale "untitled scale" 0 255 128;
 
5
}
 
6
 
 
7
Widget_toggle_item = class 
 
8
        Menuaction "_Toggle" "make a new toggle widget" {
 
9
        action = Toggle "untitled toggle" false;
 
10
}
 
11
 
 
12
Widget_option_item = class 
 
13
        Menuaction "_Option" "make a new option widget" {
 
14
        action = Option "untitled option" ["option0", "option1"] 0;
 
15
}
 
16
 
 
17
Widget_string_item = class 
 
18
        Menuaction "St_ring" "make a new string widget" {
 
19
        action = String "Enter a string" "sample text";
 
20
}
 
21
 
 
22
Widget_number_item = class 
 
23
        Menuaction "_Number" "make a new number widget" {
 
24
        action = Number "Enter a number" 42;
 
25
}
 
26
 
 
27
Widget_expression_item = class 
 
28
        Menuaction "_Expression" "make a new expression widget" {
 
29
        action = Expression "Enter an expression" 42;
 
30
}
 
31
 
 
32
Widget_pathname_item = class 
 
33
        Menuaction "_File Chooser" "make a new file chooser widget" {
 
34
        action = Pathname "Pick a file" 
 
35
                "$VIPSHOME/share/$PACKAGE/data/print_test_image.v";
 
36
}
 
37
 
 
38
Widget_font_item = class 
 
39
        Menuaction "F_ont Chooser" "make a new font chooser widget" {
 
40
        action = Fontname "Pick a font"  Workspaces.Preferences.PAINTBOX_FONT;
 
41
}
 
42
 
 
43
Widget_clock_item = class 
 
44
        Menuaction "_Clock" "make a new clock widget" {
 
45
        action = Clock 1 1;
 
46
}