/* -*- 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 _PAD_PROGRESS_HXX_ #define _PAD_PROGRESS_HXX_ #include "vcl/dialog.hxx" #include "vcl/fixed.hxx" #include "vcl/button.hxx" #include "vcl/prgsbar.hxx" namespace padmin { class ProgressDialog : public ModelessDialog { FixedText maOperation; FixedText maFilename; FixedText maProgressTxt; CancelButton maCancelButton; ProgressBar maProgressBar; int mnMax, mnMin; bool mbCanceled; public: ProgressDialog( Window*, sal_Bool bCancelable = sal_True, int nMin = 0, int nMax = 100 ); ~ProgressDialog(); DECL_LINK( ClickBtnHdl, Button* ); void setValue( int nValue ); void setRange( int nMin, int nMax ) { mnMin = nMin; mnMax = nMax; } void startOperation( const String& ); void setFilename( const String& ); bool isCanceled() { return mbCanceled; } }; } // namespace #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ ora/cd-5.3'>distro/collabora/cd-5.3 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/odk/docs
AgeCommit message (Expand)Author
2013-09-22add mode lines to new files (and idls) since last runCaolán McNamara
2013-09-11odk: move files out of the confusing "pack" directory to better homesMichael Stahl
2013-09-07s/wiki.services.openoffice.org/wiki.openoffice.org/gAndras Timar
2013-08-26unodevtools: drop support for skeletonmaker --java4 parameterMichael Stahl
2013-08-26uno-skeletonmaker has -l, does not need -env:UNO_TYPESStephan Bergmann
2013-06-26Related: #i121442# Add sed and cat as dependencies to odkAriel Constenla-Haile
2013-06-05Use api.libreoffice.org fallback links when no local doxygen/javadoc docuStephan Bergmann
2013-06-05Some HTML clean upStephan Bergmann
2013-06-04notsupported.html appears unusedStephan Bergmann
2013-06-04API CHANGE: odk: stop packaging autodoc toolMichael Stahl
2013-05-23Fix css.ucb.Content documentationAriel Constenla-Haile
2013-04-10odk: remove duplicative setsdenv_unix.cshMichael Stahl
2013-02-06bump copyright year + small fixes in SDK docsAndras Timar
2013-02-06fix help text of uno-skeletonmaker -lh switchAndras Timar
2012-12-19API CHANGE: Remove support for uno executable's -ro/-rw argumentsStephan Bergmann
2012-12-18API CHANGE: Remove obsolete regcomp from UREStephan Bergmann
2012-11-12re-base on ALv2 code. Includes:Michael Meeks