Loading...
Searching...
No Matches
ComboBoxWidget.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_CPPPDFComboBoxWidget
6#define PDFTRON_H_CPPPDFComboBoxWidget
7
8#include <PDF/Annots/Widget.h>
9
10namespace pdftron {
11 namespace PDF {
12 namespace Annots {
13
17class ComboBoxWidget : public Widget
18{
19public:
30
40 ComboBoxWidget(const Annot& annot);
41
51 static ComboBoxWidget Create(PDFDoc& doc, const Rect& pos, const UString& field_name = "");
52
62 static ComboBoxWidget 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 std::vector<std::string> GetOptions();
85
91 void ReplaceOptions(const std::vector<std::string>& new_opts);
92#else
98 void AddOptions(const std::vector<UString>& opts);
104 std::vector<UString> GetOptions();
105
111 void ReplaceOptions(const std::vector<UString>& new_opts);
112#endif
113
119 void SetSelectedOption(const UString& value);
120
127
133 void RemoveOption(const UString& value);
134};
135
136 }; //namespace Annots
137 }; //namespace PDF
138}; //namespace pdftron
139
140#include <Impl/ComboBoxWidget.inl>
141
142#endif // PDFTRON_H_CPPPDFComboBoxWidget
Annot(SDF::Obj d=0)
void SetSelectedOption(const UString &value)
void AddOption(const UString &value)
std::vector< UString > GetOptions()
void ReplaceOptions(const std::vector< UString > &new_opts)
static ComboBoxWidget Create(PDFDoc &doc, const Rect &pos, const Field &field)
static ComboBoxWidget Create(PDFDoc &doc, const Rect &pos, const UString &field_name="")
void RemoveOption(const UString &value)
void AddOptions(const std::vector< UString > &opts)