Loading...
Searching...
No Matches
ListBoxWidget.h
Go to the documentation of this file.
1//---------------------------------------------------------------------------------------
2// Copyright (c) 2001-2025 by Apryse Software Inc. All Rights Reserved.
3// Consult legal.txt regarding legal and license information.
4//---------------------------------------------------------------------------------------
5#ifndef PDFTRON_H_CPPPDFListBoxWidget
6#define PDFTRON_H_CPPPDFListBoxWidget
7
8#include <PDF/Annots/Widget.h>
9
10namespace pdftron {
11 namespace PDF {
12 namespace Annots {
13
17class ListBoxWidget : public Widget
18{
19public:
30
40 ListBoxWidget(const Annot& annot);
41
51 static ListBoxWidget Create(PDFDoc& doc, const Rect& pos, const UString& field_name = "");
52
62 static ListBoxWidget Create(PDFDoc& doc, const Rect& pos, const Field& field);
63
69 void AddOption(const UString& value);
70
71#ifdef SWIG
77 void AddOptions(const std::vector<std::string>& opts);
78
84 void SetSelectedOptions(const std::vector<std::string>& selected_opts);
85
91 std::vector<std::string> GetSelectedOptions();
92
98 std::vector<std::string> GetOptions();
99
105 void ReplaceOptions(const std::vector<std::string>& new_opts);
106#else
112 void AddOptions(const std::vector<UString>& opts);
113
119 void SetSelectedOptions(const std::vector<UString>& selected_opts);
120
126 std::vector<UString> GetSelectedOptions();
127
133 std::vector<UString> GetOptions();
134
140 void ReplaceOptions(const std::vector<UString>& new_opts);
141#endif
142
148 void RemoveOption(const UString& value);
149};
150
151 }; //namespace Annots
152 }; //namespace PDF
153}; //namespace trn
154
155#include <Impl/ListBoxWidget.inl>
156
157#endif //PDFTRON_H_CPPPDFListBoxWidget
Annot(SDF::Obj d=0)
std::vector< UString > GetOptions()
static ListBoxWidget Create(PDFDoc &doc, const Rect &pos, const UString &field_name="")
std::vector< UString > GetSelectedOptions()
void AddOptions(const std::vector< UString > &opts)
void SetSelectedOptions(const std::vector< UString > &selected_opts)
void RemoveOption(const UString &value)
static ListBoxWidget Create(PDFDoc &doc, const Rect &pos, const Field &field)
void ReplaceOptions(const std::vector< UString > &new_opts)
void AddOption(const UString &value)