Tag: cws_src680_reportdesign01 User: lla Date: 2007-10-15 12:50:20+0000 Modified: dba/reportdesign/source/ui/inc/DateTime.hxx
Log: #i77464# new date time dialog File Changes: Directory: /dba/reportdesign/source/ui/inc/ =========================================== File [changed]: DateTime.hxx Url: http://dba.openoffice.org/source/browse/dba/reportdesign/source/ui/inc/DateTime.hxx?r1=1.2&r2=1.2.28.1 Delta lines: +25 -10 --------------------- --- DateTime.hxx 2007-07-09 11:56:30+0000 1.2 +++ DateTime.hxx 2007-10-15 12:50:17+0000 1.2.28.1 @@ -6,9 +6,9 @@ * * $RCSfile: DateTime.hxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.2.28.1 $ * - * last change: $Author: rt $ $Date: 2007/07/09 11:56:30 $ + * last change: $Author: lla $ $Date: 2007/10/15 12:50:17 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -57,6 +57,8 @@ #include <com/sun/star/lang/Locale.hpp> #endif +#include <svtools/dialogcontrolling.hxx> + namespace rptui { class OReportController; @@ -67,22 +69,29 @@ \************************************************************************/ class ODateTimeDialog : public ModalDialog { - FixedLine m_aFLDate; + // FixedLine m_aFLDate; CheckBox m_aDate; - RadioButton m_aDateF1; - RadioButton m_aDateF2; - RadioButton m_aDateF3; - FixedLine m_aFLTime; + FixedText m_aFTDateFormat; + ListBox m_aDateListBox; + // RadioButton m_aDateF1; + // RadioButton m_aDateF2; + // RadioButton m_aDateF3; + FixedLine m_aFL0; CheckBox m_aTime; - RadioButton m_aTimeF1; - RadioButton m_aTimeF2; - RadioButton m_aTimeF3; + FixedText m_aFTTimeFormat; + ListBox m_aTimeListBox; + // RadioButton m_aTimeF1; + // RadioButton m_aTimeF2; + // RadioButton m_aTimeF3; FixedLine m_aFL1; OKButton m_aPB_OK; CancelButton m_aPB_CANCEL; HelpButton m_aPB_Help; + svt::ControlDependencyManager m_aDateControlling; + svt::ControlDependencyManager m_aTimeControlling; + ::rptui::OReportController* m_pController; ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection> m_xHoldAlive; @@ -105,6 +114,12 @@ DECL_LINK( CBClickHdl, CheckBox* ); ODateTimeDialog(const ODateTimeDialog&); void operator =(const ODateTimeDialog&); + + // fill methods + sal_Int16 m_nDateEntryCount; + void InsertDateEntry(sal_Int16 _nNumberFormatId); + sal_Int16 m_nTimeEntryCount; + void InsertTimeEntry(sal_Int16 _nNumberFormatId); public: ODateTimeDialog( Window* pParent ,const ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection>& _xHoldAlive --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
