#include <com/sun/star/awt/XControlModel.hpp>
#include <com/sun/star/beans/XPropertySet.hpp>
#include <com/sun/star/beans/XPropertyChangeListener.hpp>
#include <com/sun/star/container/XContainerListener.hpp>
#include <com/sun/star/container/XContainer.hpp>
#include <cppuhelper/implbase.hxx>
#include <map>
#include <memory>
#include <vector>
Go to the source code of this file.
|
| namespace | frm |
| | ListBox is a bit confusing / different from other form components, so here are a few notes:
|
| |
|
| template<class ELEMENT , class LESS_COMPARE > |
| sal_Int32 | frm::insert_sorted (::std::vector< ELEMENT > &_rArray, const ELEMENT &_rNewElement, const LESS_COMPARE &_rCompareOp) |
| |
| template<class ELEMENT , class LESS_COMPARE > |
| bool | frm::seek_entry (const ::std::vector< ELEMENT > &_rArray, const ELEMENT &_rNewElement, sal_Int32 &nPos, const LESS_COMPARE &_rCompareOp) |
| |