bump product version to 4.1.6.2
[LibreOffice.git] / include / svtools / DocumentInfoPreview.hxx
blob167de92636de8a2edf8a71ad8a1facbc035616fe
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 .
20 #ifndef SVTOOLS_DOCUMENTINFOPREVIEW_HXX
21 #define SVTOOLS_DOCUMENTINFOPREVIEW_HXX
23 #include "sal/config.h"
25 #include "boost/scoped_ptr.hpp"
26 #include "i18nlangtag/languagetag.hxx"
27 #include "com/sun/star/uno/Reference.hxx"
28 #include "svtools/svmedit2.hxx"
29 #include "svtools/svtdllapi.h"
30 #include "tools/wintypes.hxx"
31 #include "vcl/window.hxx"
33 class SvtDocInfoTable_Impl;
35 namespace com { namespace sun { namespace star {
36 namespace document { class XDocumentProperties; }
37 namespace util { struct DateTime; }
38 } } }
40 namespace svtools {
42 class SVT_DLLPUBLIC ODocumentInfoPreview: public Window {
43 public:
44 ODocumentInfoPreview(Window * pParent, WinBits nBits);
46 virtual ~ODocumentInfoPreview();
48 virtual void Resize();
50 void clear();
52 void fill(
53 com::sun::star::uno::Reference<
54 com::sun::star::document::XDocumentProperties > const & xDocProps,
55 OUString const & rURL);
57 private:
58 ExtMultiLineEdit m_pEditWin;
59 boost::scoped_ptr< SvtDocInfoTable_Impl > m_pInfoTable;
60 LanguageTag m_aLanguageTag;
62 void insertEntry(OUString const & title, OUString const & value);
64 void insertNonempty(long id, OUString const & value);
66 void insertDateTime(long id, com::sun::star::util::DateTime const & value);
71 #endif // SVTOOLS_DOCUMENTINFOPREVIEW_HXX
73 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */