Files
libreoffice/dbaccess/source/ui/inc/dlgsize.hxx
Caolán McNamara 297f5b525f convert col width and row height dialogs to .ui
Change-Id: Ic64d2e0e296b8d2ed06162e1f778194486fb6fed
2013-12-26 09:59:39 +00:00

54 lines
1.7 KiB
C++

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#ifndef INCLUDED_DBACCESS_SOURCE_UI_INC_DLGSIZE_HXX
#define INCLUDED_DBACCESS_SOURCE_UI_INC_DLGSIZE_HXX
#include <vcl/dialog.hxx>
#include <vcl/field.hxx>
#include <vcl/button.hxx>
#include <vcl/fixed.hxx>
namespace dbaui
{
class DlgSize : public ModalDialog
{
private:
sal_Int32 m_nPrevValue, m_nStandard;
void SetValue( sal_Int32 nVal );
protected:
DECL_LINK( CbClickHdl, Button * );
MetricField* m_pMF_VALUE;
CheckBox* m_pCB_STANDARD;
public:
DlgSize( Window * pParent, sal_Int32 nVal, sal_Bool bRow, sal_Int32 _nAlternativeStandard = -1 );
sal_Int32 GetValue();
};
} // namespace dbaui
#endif // INCLUDED_DBACCESS_SOURCE_UI_INC_DLGSIZE_HXX
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */