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
|
/*
* Copyright (c) 2008, 2015, Oracle and/or its affiliates. All rights reserved.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; version 2 of the
* License.
*
* 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA
*/
#pragma once
#include "base/file_utilities.h"
#include <mforms/base.h>
#include <mforms/view.h>
#include <vector>
namespace mforms {
enum FileChooserType
{
OpenFile= 1,
SaveFile= 2,
OpenDirectory= 3
};
class Form;
class FileChooser;
#ifndef DOXYGEN_SHOULD_SKIP_THIS
#ifndef SWIG
struct MFORMS_EXPORT FileChooserImplPtrs
{
bool (*create)(FileChooser *self, mforms::Form *owner, FileChooserType type, bool show_hidden);
void (*set_title)(FileChooser *self, const std::string &title);
bool (*run_modal)(FileChooser *self);
void (*set_directory)(FileChooser *self, const std::string &path);
void (*set_path)(FileChooser *self, const std::string &path);
std::string (*get_directory)(FileChooser *self);
std::string (*get_path)(FileChooser *self);
void (*set_extensions)(FileChooser *self, const std::string &extensions, const std::string &default_extension, bool allow_all_file_types);
void (*add_selector_option)(FileChooser *self, const std::string &name,
const std::string &label, const std::vector<std::pair<std::string, std::string> > &options);
std::string (*get_selector_option_value)(FileChooser *self, const std::string &name);
};
#endif
#endif
/** A File Picker dialog.
*/
class MFORMS_EXPORT FileChooser : public View
{
FileChooserImplPtrs *_filechooser_impl;
public:
typedef std::vector<std::pair<std::string, std::string> > StringPairVector;
// keeps a mapping of option name -> list of value identifiers
std::map<std::string, std::vector<std::string> > _selector_options;
StringPairVector split_extensions(const std::string &extensions, bool file_extensions=true);
public:
/** Constructor.
Type of file chooser may be one of OpenFile, SaveFile or OpenDirectory.
Set show_hidden to true if you wanna show hidden files and folders like "~/.ssh".
*/
FileChooser(FileChooserType, bool show_hidden = false);
FileChooser(mforms::Form *owner, FileChooserType, bool show_hidden = false);
/** Sets the text to be shown in the title of the dialog window. */
virtual void set_title(const std::string &title);
/** Shows the dialog and wait for user input.
Returns true if the user clicks OK, false otherwise. */
virtual bool run_modal();
/** Set initial directory for the chooser. */
void set_directory(const std::string &path);
/** Set initial directory and filename for the chooser. */
void set_path(const std::string &path);
/** Gets the selected path. */
std::string get_path();
/** Gets the currently selected directory. */
std::string get_directory();
/** Set allowed file extensions.
The format is "Foo files (*.foo)|*.foo|SQL Scripts (*.sql)|*.sql"
default_extension selects the default (ie "foo")
*/
void set_extensions(const std::string &extensions, const std::string &default_extension, bool allow_all_file_types = true);
/** Adds a selector type option to the file dialog, with the givan label and list of value caption/identifiers.
If name is 'format', the option is treated as a file extension, where the identifier of the option is the file extension */
void add_selector_option(const std::string &name, const std::string &label, const StringPairVector &options);
/** Adds a selector type option to the file dialog, with the givan label and list of value caption/identifiers, separated by |
The format of the string is Caption1|identifier1|Caption2|identifier2...*/
void add_selector_option(const std::string &name, const std::string &label, const std::string &options);
/** Gets the value id of the selector option of the given name */
std::string get_selector_option_value(const std::string &name);
static std::string last_directory;
};
};
|