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

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Dmitry Smirnov
  • Date: 2014-07-03 23:41:54 UTC
  • mfrom: (1.2.5)
  • Revision ID: package-import@ubuntu.com-20140703234154-4cjcmweb9f0kzbqf
Tags: 6.1.7+dfsg-1
* New upstream release [June 2014].
* Added "debian/gbp.conf".

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
43
43
    void (*set_title)(FileChooser *self, const std::string &title);
44
44
    bool (*run_modal)(FileChooser *self);
45
45
    void (*set_directory)(FileChooser *self, const std::string &path);
46
 
    void (*set_path)(FileChooser *self, const std::string &path);//TODO windows
 
46
    void (*set_path)(FileChooser *self, const std::string &path);
47
47
    std::string (*get_directory)(FileChooser *self);
48
48
    std::string (*get_path)(FileChooser *self);
49
49
    void (*set_extensions)(FileChooser *self, const std::string &extensions, const std::string &default_extension);
50
50
 
51
51
    void (*add_selector_option)(FileChooser *self, const std::string &name, 
52
 
        const std::string &label, const std::vector<std::pair<std::string, std::string> > &options);//TODO windows
53
 
    std::string (*get_selector_option_value)(FileChooser *self, const std::string &name); //TODO windows
 
52
        const std::string &label, const std::vector<std::pair<std::string, std::string> > &options);
 
53
    std::string (*get_selector_option_value)(FileChooser *self, const std::string &name);
54
54
  };
55
55
#endif
56
56
#endif