1766ce4d0SZheng Fan /**************************************************************
2766ce4d0SZheng Fan  *
3766ce4d0SZheng Fan  * Licensed to the Apache Software Foundation (ASF) under one
4766ce4d0SZheng Fan  * or more contributor license agreements.  See the NOTICE file
5766ce4d0SZheng Fan  * distributed with this work for additional information
6766ce4d0SZheng Fan  * regarding copyright ownership.  The ASF licenses this file
7766ce4d0SZheng Fan  * to you under the Apache License, Version 2.0 (the
8766ce4d0SZheng Fan  * "License"); you may not use this file except in compliance
9766ce4d0SZheng Fan  * with the License.  You may obtain a copy of the License at
10766ce4d0SZheng Fan  *
11766ce4d0SZheng Fan  *   http://www.apache.org/licenses/LICENSE-2.0
12766ce4d0SZheng Fan  *
13766ce4d0SZheng Fan  * Unless required by applicable law or agreed to in writing,
14766ce4d0SZheng Fan  * software distributed under the License is distributed on an
15766ce4d0SZheng Fan  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16766ce4d0SZheng Fan  * KIND, either express or implied.  See the License for the
17766ce4d0SZheng Fan  * specific language governing permissions and limitations
18766ce4d0SZheng Fan  * under the License.
19766ce4d0SZheng Fan  *
20766ce4d0SZheng Fan  *************************************************************/
2137fee4fdSAndre Fischer #ifndef _SVX_SIDEBAR_BULLETS_CONTROL_HXX_
2237fee4fdSAndre Fischer #define _SVX_SIDEBAR_BULLETS_CONTROL_HXX_
23766ce4d0SZheng Fan 
24766ce4d0SZheng Fan #include "svx/sidebar/PopupControl.hxx"
25766ce4d0SZheng Fan #include "svx/sidebar/ValueSetWithTextControl.hxx"
26766ce4d0SZheng Fan #include <sfx2/bindings.hxx>
27766ce4d0SZheng Fan #include <svtools/ctrlbox.hxx>
28766ce4d0SZheng Fan #include <svtools/ctrltool.hxx>
2937fee4fdSAndre Fischer #include "ParaPropertyPanel.hxx"
3037fee4fdSAndre Fischer #include <vcl/fixed.hxx>
3137fee4fdSAndre Fischer #include <svl/poolitem.hxx>
3237fee4fdSAndre Fischer #include <editeng/lspcitem.hxx>
3337fee4fdSAndre Fischer #include <sfx2/sidebar/EnumContext.hxx>
3437fee4fdSAndre Fischer #include <vcl/button.hxx>
3537fee4fdSAndre Fischer 
3637fee4fdSAndre Fischer 
3737fee4fdSAndre Fischer namespace svx { namespace sidebar {
3837fee4fdSAndre Fischer 
3937fee4fdSAndre Fischer class ParaBulletsControl:public svx::sidebar::PopupControl
4037fee4fdSAndre Fischer {
41*7aed46aaSOliver-Rainer Wittmann private:
42*7aed46aaSOliver-Rainer Wittmann     SvxNumValueSet3 maBulletsVS;
43*7aed46aaSOliver-Rainer Wittmann     PushButton      maMoreButton;
44*7aed46aaSOliver-Rainer Wittmann     ParaPropertyPanel&     mrParaPropertyPanel;
45*7aed46aaSOliver-Rainer Wittmann     SfxBindings*    mpBindings;
4637fee4fdSAndre Fischer 
47*7aed46aaSOliver-Rainer Wittmann     DECL_LINK(BulletSelectHdl_Impl, ValueSet*);
48*7aed46aaSOliver-Rainer Wittmann     DECL_LINK(MoreButtonClickHdl_Impl, void*);
4937fee4fdSAndre Fischer 
5037fee4fdSAndre Fischer public:
51*7aed46aaSOliver-Rainer Wittmann     ParaBulletsControl(Window* pParent, svx::sidebar::ParaPropertyPanel& rPanel);
52*7aed46aaSOliver-Rainer Wittmann     ~ParaBulletsControl();
53*7aed46aaSOliver-Rainer Wittmann     void UpdateValueSet();
5437fee4fdSAndre Fischer };
5537fee4fdSAndre Fischer 
56766ce4d0SZheng Fan }}
57766ce4d0SZheng Fan 
58766ce4d0SZheng Fan #endif
5937fee4fdSAndre Fischer 
60