libyui
 
Loading...
Searching...
No Matches
YPopupInternal.h
1/*
2 Copyright (C) 2016 SUSE LLC
3
4 This library is free software; you can redistribute it and/or modify
5 it under the terms of the GNU Lesser General Public License as
6 published by the Free Software Foundation; either version 2.1 of the
7 License, or (at your option) version 3.0 of the License. This library
8 is distributed in the hope that it will be useful, but WITHOUT ANY
9 WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
11 License for more details. You should have received a copy of the GNU
12 Lesser General Public License along with this library; if not, write
13 to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
14 Floor, Boston, MA 02110-1301 USA
15*/
16
17#include <string>
18#include <vector>
19
20// Internal helper class for YDialogSpy and YPropertyEditor
22{
23public:
24
29 static void message(const std::string &label);
30
31 typedef std::vector<std::string> StringArray;
32
39 static bool editStringArray(StringArray &array, const std::string &label);
40
46 static StringArray editNewStringArray(const std::string &label);
47};
Definition YPopupInternal.h:22
static void message(const std::string &label)
Definition YPopupInternal.cc:36
static bool editStringArray(StringArray &array, const std::string &label)
Definition YPopupInternal.cc:74
static StringArray editNewStringArray(const std::string &label)
Definition YPopupInternal.cc:141