LibreOffice Module sc (master) 1
scuiautofmt.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 */
19#pragma once
20
21#include <vcl/customweld.hxx>
22#include <autoform.hxx>
23#include "autofmt.hxx"
24
26{
27public:
29 ScAutoFormat* pAutoFormat,
30 const ScAutoFormatData* pSelFormatData,
31 const ScViewData& rViewData);
32 virtual ~ScAutoFormatDlg() override;
33
34 sal_uInt16 GetIndex() const { return nIndex; }
35 OUString GetCurrFormatName();
36
37private:
38 OUString aStrTitle;
39 OUString aStrLabel;
40 OUString aStrClose;
41 OUString aStrDelMsg;
42 OUString aStrRename;
43
46 sal_uInt16 nIndex;
49
51 std::unique_ptr<weld::TreeView> m_xLbFormat;
52 std::unique_ptr<weld::Button> m_xBtnOk;
53 std::unique_ptr<weld::Button> m_xBtnCancel;
54 std::unique_ptr<weld::Button> m_xBtnAdd;
55 std::unique_ptr<weld::Button> m_xBtnRemove;
56 std::unique_ptr<weld::Button> m_xBtnRename;
57 std::unique_ptr<weld::CheckButton> m_xBtnNumFormat;
58 std::unique_ptr<weld::CheckButton> m_xBtnBorder;
59 std::unique_ptr<weld::CheckButton> m_xBtnFont;
60 std::unique_ptr<weld::CheckButton> m_xBtnPattern;
61 std::unique_ptr<weld::CheckButton> m_xBtnAlignment;
62 std::unique_ptr<weld::CheckButton> m_xBtnAdjust;
63 std::unique_ptr<weld::CustomWeld> m_xWndPreview;
64
65 void Init ();
66 void UpdateChecks ();
67
68 DECL_LINK( CheckHdl, weld::Toggleable&, void );
69 DECL_LINK( AddHdl, weld::Button&, void );
70 DECL_LINK( RemoveHdl, weld::Button&, void );
71 DECL_LINK( SelFmtHdl, weld::TreeView&, void );
72 DECL_LINK( CloseHdl, weld::Button&, void );
73 DECL_LINK( DblClkHdl, weld::TreeView&, bool );
74 DECL_LINK( RenameHdl, weld::Button&, void );
75
76};
77
78/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
ScAutoFmtPreview m_aWndPreview
Definition: scuiautofmt.hxx:50
std::unique_ptr< weld::CheckButton > m_xBtnBorder
Definition: scuiautofmt.hxx:58
OUString GetCurrFormatName()
OUString aStrClose
Definition: scuiautofmt.hxx:40
DECL_LINK(AddHdl, weld::Button &, void)
OUString aStrDelMsg
Definition: scuiautofmt.hxx:41
sal_uInt16 nIndex
Definition: scuiautofmt.hxx:46
DECL_LINK(RenameHdl, weld::Button &, void)
std::unique_ptr< weld::Button > m_xBtnCancel
Definition: scuiautofmt.hxx:53
std::unique_ptr< weld::CheckButton > m_xBtnNumFormat
Definition: scuiautofmt.hxx:57
sal_uInt16 GetIndex() const
Definition: scuiautofmt.hxx:34
DECL_LINK(CloseHdl, weld::Button &, void)
std::unique_ptr< weld::Button > m_xBtnAdd
Definition: scuiautofmt.hxx:54
DECL_LINK(DblClkHdl, weld::TreeView &, bool)
DECL_LINK(RemoveHdl, weld::Button &, void)
OUString aStrTitle
Definition: scuiautofmt.hxx:38
OUString aStrRename
Definition: scuiautofmt.hxx:42
virtual ~ScAutoFormatDlg() override
Definition: scuiautofmt.cxx:79
std::unique_ptr< weld::TreeView > m_xLbFormat
Definition: scuiautofmt.hxx:51
ScAutoFormatDlg(weld::Window *pParent, ScAutoFormat *pAutoFormat, const ScAutoFormatData *pSelFormatData, const ScViewData &rViewData)
Definition: scuiautofmt.cxx:38
DECL_LINK(SelFmtHdl, weld::TreeView &, void)
std::unique_ptr< weld::CheckButton > m_xBtnFont
Definition: scuiautofmt.hxx:59
std::unique_ptr< weld::CheckButton > m_xBtnAlignment
Definition: scuiautofmt.hxx:61
std::unique_ptr< weld::CheckButton > m_xBtnAdjust
Definition: scuiautofmt.hxx:62
std::unique_ptr< weld::Button > m_xBtnRemove
Definition: scuiautofmt.hxx:55
std::unique_ptr< weld::Button > m_xBtnRename
Definition: scuiautofmt.hxx:56
std::unique_ptr< weld::CustomWeld > m_xWndPreview
Definition: scuiautofmt.hxx:63
const ScAutoFormatData * pSelFmtData
Definition: scuiautofmt.hxx:45
OUString aStrLabel
Definition: scuiautofmt.hxx:39
ScAutoFormat * pFormat
Definition: scuiautofmt.hxx:44
std::unique_ptr< weld::Button > m_xBtnOk
Definition: scuiautofmt.hxx:52
std::unique_ptr< weld::CheckButton > m_xBtnPattern
Definition: scuiautofmt.hxx:60
DECL_LINK(CheckHdl, weld::Toggleable &, void)