xref: /AOO41X/main/sd/source/ui/inc/DialogListBox.hxx (revision 67e470dafe1997e73f56ff7ff4878983707e3e07)
1 /**************************************************************
2  *
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  *
20  *************************************************************/
21 
22 
23 #ifndef SD_DIALOGLISTBOX_HXX
24 #define SD_DIALOGLISTBOX_HXX
25 
26 #include <vcl/ctrl.hxx>
27 #include <vcl/scrbar.hxx>
28 
29 namespace sd
30 {
31 
32 class DialogListBox : public Control
33 {
34 private:
35     ScrollBar*          mpHScrollBar;
36     ScrollBar*          mpVScrollBar;
37     ScrollBarBox*       mpScrollBarBox;
38     ::Window*           mpChild;
39     bool                mbVScroll;
40     bool                mbHScroll;
41     bool                mbAutoHScroll;
42     Size                maMinSize, maInnerSize;
43 
44 protected:
45     virtual void        GetFocus();
46     virtual void        StateChanged( StateChangedType nType );
47 
48     long                Notify( NotifyEvent& rNEvt );
49 
50     void                ImplResizeControls();
51     void                ImplCheckScrollBars();
52     void                ImplInitScrollBars();
53     void                ImplResizeChild();
54 
55     DECL_LINK(          ScrollBarHdl, ScrollBar* );
56 
57 public:
58                     DialogListBox( ::Window* pParent, WinBits nWinStyle );
59                     ~DialogListBox();
60 
61     void            SetChildWindow( ::Window* pChild, const Size& rMinSize );
62 
63     ::Window*           GetPreferredKeyInputWindow();
64     void            Resize();
65 
66 };
67 
68 } //  namespace sd
69 
70 // SD_DIALOGLISTBOX_HXX
71 #endif
72