~ubuntu-branches/ubuntu/utopic/mysql-workbench/utopic

« back to all changes in this revision

Viewing changes to library/forms/mforms/listbox.h

  • Committer: Package Import Robot
  • Author(s): Dmitry Smirnov
  • Date: 2014-05-31 12:03:58 UTC
  • mfrom: (1.2.4)
  • Revision ID: package-import@ubuntu.com-20140531120358-cjik5ofkmj0fxsn8
Tags: 6.1.6+dfsg-1
* New upstream release [May 2014].
* Dropped "prtcl.patch".
* "debian/clean": better clean-up.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* 
2
 
 * Copyright (c) 2008, 2013, Oracle and/or its affiliates. All rights reserved.
 
2
 * Copyright (c) 2008, 2014, Oracle and/or its affiliates. All rights reserved.
3
3
 *
4
4
 * This program is free software; you can redistribute it and/or
5
5
 * modify it under the terms of the GNU General Public License as
35
35
    void (*set_heading)(ListBox *self, const std::string &text);
36
36
    void (*add_items)(ListBox *self, const std::list<std::string> &items);
37
37
    int (*add_item)(ListBox *self, const std::string &item);
38
 
    void (*remove_indexes)(ListBox *self, const std::vector<int> &indexes); // TODO: Linux.
39
 
    void (*remove_index)(ListBox *self, int index); // TODO: Linux.
 
38
    void (*remove_indexes)(ListBox *self, const std::vector<int> &indexes);
 
39
    void (*remove_index)(ListBox *self, int index);
40
40
    std::string (*get_text)(ListBox *self);
41
41
    void (*set_index)(ListBox *self, int index);
42
42
    int (*get_index)(ListBox *self);