~ubuntu-branches/ubuntu/trusty/ricochet/trusty-proposed

« back to all changes in this revision

Viewing changes to ricochet-0.2/debian/ricochet/usr/share/ricochet/nichrome-message.5c

  • Committer: Package Import Robot
  • Author(s): Keith Packard
  • Date: 2012-06-11 13:37:57 UTC
  • Revision ID: package-import@ubuntu.com-20120611133757-zn0ukd22vz56ymto
Tags: 0.3
* Improve appearance of board
* Fix user list when removing/adding same user

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Copyright © 2012 Keith Packard <keithp@keithp.com>
3
 
 *
4
 
 * This program is free software; you can redistribute it and/or modify
5
 
 * it under the terms of the GNU General Public License as published by
6
 
 * the Free Software Foundation; version 2 of the License.
7
 
 *
8
 
 * This program is distributed in the hope that it will be useful, but
9
 
 * WITHOUT ANY WARRANTY; without even the implied warranty of
10
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11
 
 * General Public License for more details.
12
 
 *
13
 
 * You should have received a copy of the GNU General Public License along
14
 
 * with this program; if not, write to the Free Software Foundation, Inc.,
15
 
 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
16
 
 */
17
 
 
18
 
autoload Nichrome;
19
 
autoload Nichrome::Button;
20
 
autoload Nichrome::Box;
21
 
autoload Nichrome::Label;
22
 
autoload Nichrome::Toggle;
23
 
autoload Nichrome::Textline;
24
 
autoload Nichrome::RRboard;
25
 
autoload Nichrome::Solid;
26
 
 
27
 
extend namespace Nichrome {
28
 
        public namespace Message {
29
 
                public typedef struct {
30
 
                        *nichrome_t     ui;
31
 
                } message_t;
32
 
 
33
 
                protected message_t new (string title, string contents) {
34
 
                        *message_t      message = &(message_t) {};
35
 
                        message->ui = Nichrome::new(title, 100, 100);
36
 
 
37
 
                        *Box::box_t     box = Box::new(Box::dir_t.vertical,
38
 
                                                       Box::widget_item(Label::new(message->ui, contents), 1, 1),
39
 
                                                       Box::box_item(Box::new(Box::dir_t.horizontal,
40
 
                                                                              Box::glue_item(1),
41
 
                                                                              Box::widget_item(Button::new(message->ui,
42
 
                                                                                                           "OK",
43
 
                                                                                                           void func (*widget_t w, bool state) {
44
 
                                                                                                                   Nichrome::destroy(message->ui);
45
 
                                                                                                           }), 0, 0))));
46
 
                        Nichrome::set_box(message->ui, box);
47
 
                        main_loop(message->ui);
48
 
                }
49
 
        }
50
 
}