Line data Source code
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 :
20 :
21 : #include "sal/config.h"
22 :
23 : #include <algorithm>
24 : #include <vector>
25 :
26 : #include "rtl/ustring.hxx"
27 : #include "tools/gen.hxx"
28 : #include "tools/resid.hxx"
29 : #include "tools/solar.h"
30 : #include "vcl/dialog.hxx"
31 :
32 : #include "dp_gui.hrc"
33 : #include "dp_gui_dependencydialog.hxx"
34 : #include "dp_gui_shared.hxx"
35 :
36 : class Window;
37 :
38 : using dp_gui::DependencyDialog;
39 :
40 0 : DependencyDialog::DependencyDialog(
41 : Window * parent, std::vector< rtl::OUString > const & dependencies):
42 : ModalDialog(parent, DpGuiResId(RID_DLG_DEPENDENCIES) ),
43 : m_text(this, DpGuiResId(RID_DLG_DEPENDENCIES_TEXT)),
44 : m_list(this, DpGuiResId(RID_DLG_DEPENDENCIES_LIST)),
45 : m_ok(this, DpGuiResId(RID_DLG_DEPENDENCIES_OK)),
46 : m_listDelta(
47 0 : GetOutputSizePixel().Width() - m_list.GetSizePixel().Width(),
48 0 : GetOutputSizePixel().Height() - m_list.GetSizePixel().Height())
49 : {
50 0 : FreeResource();
51 0 : SetMinOutputSizePixel(GetOutputSizePixel());
52 0 : m_list.SetReadOnly();
53 0 : for (std::vector< rtl::OUString >::const_iterator i(dependencies.begin());
54 0 : i != dependencies.end(); ++i)
55 : {
56 0 : m_list.InsertEntry(*i);
57 : }
58 0 : }
59 :
60 0 : DependencyDialog::~DependencyDialog() {}
61 :
62 0 : void DependencyDialog::Resize() {
63 0 : long n = m_ok.GetPosPixel().Y() -
64 0 : (m_list.GetPosPixel().Y() + m_list.GetSizePixel().Height());
65 : m_list.SetSizePixel(
66 : Size(
67 0 : GetOutputSizePixel().Width() - m_listDelta.Width(),
68 0 : GetOutputSizePixel().Height() - m_listDelta.Height()));
69 : m_ok.SetPosPixel(
70 : Point(
71 0 : (m_list.GetPosPixel().X() +
72 0 : (m_list.GetSizePixel().Width() - m_ok.GetSizePixel().Width()) / 2),
73 0 : m_list.GetPosPixel().Y() + m_list.GetSizePixel().Height() + n));
74 0 : }
75 :
76 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|