/************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 * only, as published by the Free Software Foundation. * * OpenOffice.org is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License version 3 for more details * (a copy is included in the LICENSE file that accompanied this code). * * You should have received a copy of the GNU Lesser General Public License * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. * ************************************************************************/ #ifndef _OPTLOAD_HXX #define _OPTLOAD_HXX #include #ifndef _GROUP_HXX #include #endif #include #include #include #include #include #include #include #include class SwFldMgr; class SvLBoxEntry; class SwWrtShell; /*-----------------31.08.96 10.09------------------- --------------------------------------------------*/ class SwLoadOptPage : public SfxTabPage { private: FixedLine aUpdateFL; FixedText aLinkFT; RadioButton aAlwaysRB; RadioButton aRequestRB; RadioButton aNeverRB; FixedText aFieldFT; CheckBox aAutoUpdateFields; CheckBox aAutoUpdateCharts; FixedLine aSettingsFL; FixedText aMetricFT; ListBox aMetricLB; FixedText aTabFT; MetricField aTabMF; CheckBox aUseSquaredPageMode; SwWrtShell* pWrtShell; sal_Bool bHTMLMode; UINT16 nLastTab; sal_Int32 nOldLinkMode; DECL_LINK(CaptionHdl, PushButton*); DECL_LINK(MetricHdl, ListBox*); public: SwLoadOptPage( Window* pParent, const SfxItemSet& rSet ); ~SwLoadOptPage(); static SfxTabPage* Create( Window* pParent, const SfxItemSet& rAttrSet); virtual BOOL FillItemSet( SfxItemSet& rSet ); virtual void Reset( const SfxItemSet& rSet ); }; /*-------------------------------------------------------------------- Beschreibung: --------------------------------------------------------------------*/ class SwCaptionOptDlg : public SfxSingleTabDialog { public: SwCaptionOptDlg(Window* pParent, const SfxItemSet& rSet); ~SwCaptionOptDlg(); }; /* -----------------23.10.98 13:19------------------- * * --------------------------------------------------*/ class CaptionComboBox : public SwComboBox { protected: virtual void KeyInput( const KeyEvent& ); public: CaptionComboBox( Window* pParent, const ResId& rResId) : SwComboBox(pParent, rResId) {} }; /*-----------------31.08.96 10.09------------------- --------------------------------------------------*/ class SwCaptionPreview : public Window { private: String maText; Point maDrawPos; public: SwCaptionPreview( Window* pParent, const ResId& rResId ); void SetPreviewText( const String& rText ); virtual void Paint( const Rectangle& rRect ); }; class SwCaptionOptPage : public SfxTabPage { private: FixedText aCheckFT; SvxCheckListBox aCheckLB; FixedText aFtCaptionOrder; ListBox aLbCaptionOrder; SwCaptionPreview aPreview; FixedLine aSettingsGroupFL; FixedText aCategoryText; CaptionComboBox aCategoryBox; FixedText aFormatText; ListBox aFormatBox; //#i61007# order of captions FixedText aNumberingSeparatorFT; Edit aNumberingSeparatorED; FixedText aTextText; Edit aTextEdit; FixedText aPosText; ListBox aPosBox; FixedLine aNumCaptFL; FixedText aFtLevel; ListBox aLbLevel; FixedText aFtDelim; Edit aEdDelim; FixedLine aCategoryFL; FixedText aCharStyleFT; ListBox aCharStyleLB; CheckBox aApplyBorderCB; String sSWTable; String sSWFrame; String sSWGraphic; String sOLE; String sIllustration; String sTable; String sText; String sDrawing; String sBegin; String sEnd; String sAbove; String sBelow; String sNone; SwFldMgr *pMgr; USHORT eType; BOOL bHTMLMode; DECL_LINK( SelectHdl, ListBox *pLB = 0 ); DECL_LINK( ModifyHdl, Edit *pEdt = 0 ); DECL_LINK( OrderHdl, ListBox* ); DECL_LINK( ShowEntryHdl, SvxCheckListBox *pLB = 0 ); DECL_LINK( SaveEntryHdl, SvxCheckListBox *pLB = 0 ); void DelUserData(); void SetOptions( const USHORT nPos, const SwCapObjType eType, const SvGlobalName *pOleId = 0); void SaveEntry( SvLBoxEntry* pEntry ); void DrawSample(); public: SwCaptionOptPage( Window* pParent, const SfxItemSet& rSet ); ~SwCaptionOptPage(); static SfxTabPage* Create( Window* pParent, const SfxItemSet& rAttrSet); virtual BOOL FillItemSet( SfxItemSet& rSet ); virtual void Reset( const SfxItemSet& rSet ); }; #endif value='distro/collabora/lov-6.1'>distro/collabora/lov-6.1 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-06-09convert some manual ref-counting in dbaccessNoel Grandin
Change-Id: I2df7b6b79bff4a5c7358288518c5518b6a7032bf Reviewed-on: https://gerrit.libreoffice.org/26051 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
2016-06-06Normalize on using @throws instead of @raise[s]Stephan Bergmann
...as the former is used almost exclusively Change-Id: I38ff11cd0d5125534550df99dd427666011c3b7b
2016-01-11loplugin:unusedmethods unused return value in dbaccessNoel Grandin
Change-Id: Ia7ec0209a635f8482b6ccbaa7ba48a8c6da79090
2015-11-10loplugin:nullptr (automatic rewrite)Stephan Bergmann
Change-Id: I2bba104b1bff30910864e45b5b032533099742ff
2015-10-12Replace "SAL_OVERRIDE" with "override" in LIBO_INTERNAL_ONLY codeStephan Bergmann
Change-Id: I2ea407acd763ef2d7dae2d3b8f32525523ac8274
2015-08-03com::sun::star->css in dbaccessNoel Grandin
Change-Id: I4fbdd3fb7d1e0ad4423148aaaed3a15aebb26d14
2015-07-30loplugin:unusedmethodsNoel Grandin
Change-Id: Ib4d77ee01e7362f5951f81fceeca3c489872d971 Reviewed-on: https://gerrit.libreoffice.org/17378 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
2015-05-05loplugin:staticmethodsNoel Grandin
Change-Id: Ie6867e04156f40cacee275d5bbf3d63ac4965b30
2015-03-06V801: Decreased performanceCaolán McNamara
Change-Id: I97c7977fdfea57b5d1c45ce0c5902b74cc719db9
2014-04-17dbaccess: sal_Bool->boolNoel Grandin
Change-Id: Ieb52470f9638b74898954db3890aaf2cf202290a
2014-04-03remove unnecessary scope qualifier from sal_Bool usesNoel Grandin
i.e. convert "::sal_Bool" to "sal_Bool" Change-Id: Ie5943aee4fee617bf2670655558927ed25b7e067
2014-03-27Second batch of adding SAL_OVERRIDE to overriding function declarationsStephan Bergmann
...mostly done with a rewriting Clang plugin, with just some manual tweaking necessary to fix poor macro usage. Change-Id: Ie656f9d653fc716f72ac175925272696d509038f
2014-03-11Remove newly unused getUnoTunnelImplementationId functionsStephan Bergmann
...after recent clean-up of getImplementationId implementations. Change-Id: I2a11f6ddf03dc7852b7e8e50dc6284a7215a0113
2014-02-26cppuhelper: retrofit std::exception into overriding exception specsStephan Bergmann
Change-Id: I56e32131b7991ee9948ce46765632eb823d463b3
2013-11-05fixincludeguards.sh: dbaccessThomas Arnhold
Change-Id: Iadd4326d58a5df5761a0ed5ce7fd5fb01fb87d11
2013-08-27fdo#62475 removed pointless commentsJelle van der Waa
Conflicts: dbaccess/source/filter/xml/xmlfilter.cxx dbaccess/source/ui/dlg/ConnectionPage.cxx dbaccess/source/ui/dlg/detailpages.cxx dbaccess/source/ui/dlg/odbcconfig.cxx dbaccess/source/ui/querydesign/querycontroller.cxx Change-Id: I3a05649efa3a43dd8d8fb069fc1bce14ca0a6338 Reviewed-on: https://gerrit.libreoffice.org/5484 Reviewed-by: Petr Mladek <pmladek@suse.cz> Tested-by: Petr Mladek <pmladek@suse.cz>
2013-04-07mass removal of rtl:: prefixes for O(U)String*Luboš Luňák
Modules sal, salhelper, cppu, cppuhelper, codemaker (selectively) and odk have kept them, in order not to break external API (the automatic using declaration is LO-internal). Change-Id: I588fc9e0c45b914f824f91c0376980621d730f09
2013-03-20fdo#46808, Convert a bunch of comphelper::ComponentContext stuffNoel Grandin
.. to Reference<XComponentContext> mostly in the dbaccess module, but it also affected some other modules. Change-Id: I09b3f6fe7a9b33498b11d98b5521b5aeeb8882be
2012-12-21fdo#46808, Convert frame::Desktop to new style service.Noel Grandin
I had to drop XEventBroadcaster from the merged interface because it introduced method name conflicts (addEventListener). Shouldn't be an issue since it was scheduled to be dropped anyhow, and the service implementation still implements it, so existing clients will be fine. I dropped the interface XPropertySet from the combined IDL because nobody seems to be using it, and it's primary purpose appears to be to set weird flags. I dropped the optional interfaces XStatusIndicatorFactory XDispatchInformationProvider from the combined IDL because the service does not implement them, and nobody seems to be using them. I suspect they were mistakenly copied from XFrame. I also did not convert the Title, UserDefinedAttributes and LayoutManager properties to attributes, again because no-one is using them. Change-Id: I678a00006ed2cca2d6c37c4e39465811442c33af
2012-06-14re-base on ALv2 code.Michael Meeks
2011-01-24WaE: gcc 4.6.0 various warningsCaolán McNamara
2010-10-27add modelines to .hxx files as wellCaolán McNamara
2010-10-13Removed comments, trailing spaces and death code (2)Gil Forcada
2010-10-05more removed include guards using fixguard.pyPetr Mladek
2010-03-11autorecovery: merged changes from m74. Still need to find out how to re-do ↵Frank Schoenheit [fs]
two patches (to module_hidden_ooo.scp and file_ooo.scp in scp2/source/ooo) which do not apply anymore.
2010-02-19autorecovery: 'using' directive needed to compile on unxsols4 without warningFrank Schoenheit [fs]
2010-02-12changefileheader2: #i109125#: change source file copyright notice from Sun ↵Jens-Heiner Rechtien
Microsystems to Oracle; remove CVS style keywords (RCSfile, Revision)
2010-02-04autorecovery: commit resolved merge (after rebase to m71)Frank Schoenheit [fs]