Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(70)

Side by Side Diff: xfa/fwl/core/cfwl_listbox.h

Issue 2522663002: Remove the GetCaption dataprovider method (Closed)
Patch Set: Remove tooltip Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « xfa/fwl/core/cfwl_datetimepicker.cpp ('k') | xfa/fwl/core/cfwl_listbox.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 PDFium Authors. All rights reserved. 1 // Copyright 2014 PDFium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6 6
7 #ifndef XFA_FWL_CORE_CFWL_LISTBOX_H_ 7 #ifndef XFA_FWL_CORE_CFWL_LISTBOX_H_
8 #define XFA_FWL_CORE_CFWL_LISTBOX_H_ 8 #define XFA_FWL_CORE_CFWL_LISTBOX_H_
9 9
10 #include <memory> 10 #include <memory>
11 #include <vector> 11 #include <vector>
12 12
13 #include "xfa/fwl/core/cfwl_widget.h" 13 #include "xfa/fwl/core/cfwl_widget.h"
14 #include "xfa/fwl/core/fwl_error.h" 14 #include "xfa/fwl/core/fwl_error.h"
15 #include "xfa/fwl/core/ifwl_listbox.h" 15 #include "xfa/fwl/core/ifwl_listbox.h"
16 #include "xfa/fwl/core/ifwl_widget.h" 16 #include "xfa/fwl/core/ifwl_widget.h"
17 17
18 class CFWL_ListBox : public CFWL_Widget, public IFWL_ListBox::DataProvider { 18 class CFWL_ListBox : public CFWL_Widget, public IFWL_ListBox::DataProvider {
19 public: 19 public:
20 explicit CFWL_ListBox(const IFWL_App* pApp); 20 explicit CFWL_ListBox(const IFWL_App* pApp);
21 ~CFWL_ListBox() override; 21 ~CFWL_ListBox() override;
22 22
23 void Initialize(); 23 void Initialize();
24 24
25 // IFWL_Widget::DataProvider:
26 void GetCaption(IFWL_Widget* pWidget, CFX_WideString& wsCaption) override;
27
28 // IFWL_ListBox::DataProvider: 25 // IFWL_ListBox::DataProvider:
29 int32_t CountItems(const IFWL_Widget* pWidget) const override; 26 int32_t CountItems(const IFWL_Widget* pWidget) const override;
30 CFWL_ListItem* GetItem(const IFWL_Widget* pWidget, 27 CFWL_ListItem* GetItem(const IFWL_Widget* pWidget,
31 int32_t nIndex) const override; 28 int32_t nIndex) const override;
32 int32_t GetItemIndex(IFWL_Widget* pWidget, CFWL_ListItem* pItem) override; 29 int32_t GetItemIndex(IFWL_Widget* pWidget, CFWL_ListItem* pItem) override;
33 uint32_t GetItemStyles(IFWL_Widget* pWidget, CFWL_ListItem* pItem) override; 30 uint32_t GetItemStyles(IFWL_Widget* pWidget, CFWL_ListItem* pItem) override;
34 void GetItemText(IFWL_Widget* pWidget, 31 void GetItemText(IFWL_Widget* pWidget,
35 CFWL_ListItem* pItem, 32 CFWL_ListItem* pItem,
36 CFX_WideString& wsText) override; 33 CFX_WideString& wsText) override;
37 void GetItemRect(IFWL_Widget* pWidget, 34 void GetItemRect(IFWL_Widget* pWidget,
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 66
70 CFWL_ListItem* GetItem(int32_t nIndex); 67 CFWL_ListItem* GetItem(int32_t nIndex);
71 void GetItemText(CFWL_ListItem* pItem, CFX_WideString& wsText); 68 void GetItemText(CFWL_ListItem* pItem, CFX_WideString& wsText);
72 uint32_t GetItemStates(CFWL_ListItem* pItem); 69 uint32_t GetItemStates(CFWL_ListItem* pItem);
73 70
74 private: 71 private:
75 std::vector<std::unique_ptr<CFWL_ListItem>> m_ItemArray; 72 std::vector<std::unique_ptr<CFWL_ListItem>> m_ItemArray;
76 }; 73 };
77 74
78 #endif // XFA_FWL_CORE_CFWL_LISTBOX_H_ 75 #endif // XFA_FWL_CORE_CFWL_LISTBOX_H_
OLDNEW
« no previous file with comments | « xfa/fwl/core/cfwl_datetimepicker.cpp ('k') | xfa/fwl/core/cfwl_listbox.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698