Gtk-WARNING gtktreestore.c:1047: Invalid column number 1 added to iter
[LibreOffice.git] / dbaccess / source / ui / inc / RelationDlg.hxx
blobc4285f04aae5bf3106452cf53535904d6d6cb583
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
19 #pragma once
21 #include <memory>
22 #include <vcl/weld.hxx>
23 #include "JoinTableView.hxx"
24 #include "RelControliFace.hxx"
25 #include "RelationControl.hxx"
27 namespace dbaui
29 class OJoinTableView;
30 class ORelationDialog final : public weld::GenericDialogController
31 , public IRelationControlInterface
33 VclPtr<OJoinTableView> m_pParent;
34 TTableConnectionData::value_type m_pConnData;
35 TTableConnectionData::value_type m_pOrigConnData;
36 bool m_bTriedOneUpdate;
38 std::unique_ptr<weld::RadioButton> m_xRB_NoCascUpd;
39 std::unique_ptr<weld::RadioButton> m_xRB_CascUpd;
40 std::unique_ptr<weld::RadioButton> m_xRB_CascUpdNull;
41 std::unique_ptr<weld::RadioButton> m_xRB_CascUpdDefault;
42 std::unique_ptr<weld::RadioButton> m_xRB_NoCascDel;
43 std::unique_ptr<weld::RadioButton> m_xRB_CascDel;
44 std::unique_ptr<weld::RadioButton> m_xRB_CascDelNull;
45 std::unique_ptr<weld::RadioButton> m_xRB_CascDelDefault;
46 std::unique_ptr<weld::Button> m_xPB_OK;
48 std::unique_ptr<OTableListBoxControl> m_xTableControl;
50 public:
51 ORelationDialog(OJoinTableView* pParent,
52 const TTableConnectionData::value_type& pConnectionData,
53 bool bAllowTableSelect = false );
54 virtual ~ORelationDialog() override;
56 virtual short run() override;
58 /** setValid set the valid inside, can be used for OK buttons
59 @param _bValid true when the using control allows an update
61 virtual void setValid(bool _bValid) override;
63 /** notifyConnectionChange is callback which is called when the table selection has changed and a new connection exists
64 @param _pConnectionData the connection which exists between the new tables
66 virtual void notifyConnectionChange() override;
67 private:
68 void Init(const TTableConnectionData::value_type& _pConnectionData);
70 DECL_LINK(OKClickHdl, weld::Button&, void);
74 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */