summaryrefslogtreecommitdiff
path: root/extensions/source/propctrlr/newdatatype.cxx
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2004-11-16 11:08:51 +0000
committerOliver Bolte <obo@openoffice.org>2004-11-16 11:08:51 +0000
commit5a77bb67f2f487087f45f69f0cf2a4d97e0695ed (patch)
tree2e71f2d7ce0cca979064ccc786d8c6700a311f47 /extensions/source/propctrlr/newdatatype.cxx
parentc56364a804ec83224692874cd507e6226f1d4fa2 (diff)
INTEGRATION: CWS eforms2 (1.1.2); FILE ADDED
2004/04/26 11:45:56 fs 1.1.2.1: dialog for creating a new XSD data type
Diffstat (limited to 'extensions/source/propctrlr/newdatatype.cxx')
-rw-r--r--extensions/source/propctrlr/newdatatype.cxx143
1 files changed, 143 insertions, 0 deletions
diff --git a/extensions/source/propctrlr/newdatatype.cxx b/extensions/source/propctrlr/newdatatype.cxx
new file mode 100644
index 000000000000..b6d3447e3175
--- /dev/null
+++ b/extensions/source/propctrlr/newdatatype.cxx
@@ -0,0 +1,143 @@
+/*************************************************************************
+ *
+ * $RCSfile: newdatatype.cxx,v $
+ *
+ * $Revision: 1.2 $
+ *
+ * last change: $Author: obo $ $Date: 2004-11-16 12:08:29 $
+ *
+ * The Contents of this file are made available subject to the terms of
+ * either of the following licenses
+ *
+ * - GNU Lesser General Public License Version 2.1
+ * - Sun Industry Standards Source License Version 1.1
+ *
+ * Sun Microsystems Inc., October, 2000
+ *
+ * GNU Lesser General Public License Version 2.1
+ * =============================================
+ * Copyright 2000 by Sun Microsystems, Inc.
+ * 901 San Antonio Road, Palo Alto, CA 94303, USA
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1, as published by the Free Software Foundation.
+ *
+ * This library 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 for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ *
+ *
+ * Sun Industry Standards Source License Version 1.1
+ * =================================================
+ * The contents of this file are subject to the Sun Industry Standards
+ * Source License Version 1.1 (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.openoffice.org/license.html.
+ *
+ * Software provided under this License is provided on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
+ * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
+ * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
+ * See the License for the specific provisions governing your rights and
+ * obligations concerning the Software.
+ *
+ * The Initial Developer of the Original Code is: Sun Microsystems, Inc.
+ *
+ * Copyright: 2000 by Sun Microsystems, Inc.
+ *
+ * All Rights Reserved.
+ *
+ * Contributor(s): _______________________________________
+ *
+ *
+ ************************************************************************/
+
+#ifndef EXTENSIONS_SOURCE_PROPCTRLR_NEWDATATYPE_HXX
+#include "newdatatype.hxx"
+#endif
+#ifndef EXTENSIONS_SOURCE_PROPCTRLR_NEWDATATYPE_HRC
+#include "newdatatype.hrc"
+#endif
+
+#ifndef _EXTENSIONS_PROPCTRLR_MODULEPRC_HXX_
+#include "modulepcr.hxx"
+#endif
+#ifndef _EXTENSIONS_FORMCTRLR_PROPRESID_HRC_
+#include "formresid.hrc"
+#endif
+
+/** === begin UNO includes === **/
+/** === end UNO includes === **/
+
+//........................................................................
+namespace pcr
+{
+//........................................................................
+
+ //====================================================================
+ //= NewDataTypeDialog
+ //====================================================================
+ //--------------------------------------------------------------------
+ NewDataTypeDialog::NewDataTypeDialog( Window* _pParent, const ::rtl::OUString& _rNameBase, const ::std::vector< ::rtl::OUString >& _rProhibitedNames )
+ :ModalDialog( _pParent, ModuleRes( RID_DLG_NEW_DATA_TYPE ) )
+ ,m_aLabel ( this, ResId( FT_LABEL ) )
+ ,m_aName ( this, ResId( ED_NAME ) )
+ ,m_aOK ( this, ResId( PB_OK ) )
+ ,m_aCancel ( this, ResId( PB_CANCEL ) )
+ ,m_aProhibitedNames( _rProhibitedNames.begin(), _rProhibitedNames.end() )
+ {
+ FreeResource();
+
+ m_aName.SetModifyHdl( LINK( this, NewDataTypeDialog, OnNameModified ) );
+
+ // find an initial name
+ // for this, first remove trailing digits
+ sal_Int32 nStripUntil = _rNameBase.getLength();
+ while ( nStripUntil > 0 )
+ {
+ sal_Unicode nChar = _rNameBase[ --nStripUntil ];
+ if ( ( nChar < '0' ) || ( nChar > '9' ) )
+ {
+ if ( nChar == ' ' )
+ --nStripUntil; // strip the space, too
+ break;
+ }
+ }
+
+ String sNameBase( _rNameBase.copy( 0, nStripUntil ? nStripUntil + 1 : 0 ) );
+ sNameBase.Append( ' ' );
+ String sInitialName;
+ sal_Int32 nPostfixNumber = 1;
+ do
+ {
+ ( sInitialName = sNameBase ) += String::CreateFromInt32( nPostfixNumber++ );
+ }
+ while ( m_aProhibitedNames.find( sInitialName ) != m_aProhibitedNames.end() );
+
+ m_aName.SetText( sInitialName );
+ OnNameModified( NULL );
+ }
+
+ //--------------------------------------------------------------------
+ IMPL_LINK( NewDataTypeDialog, OnNameModified, void*, _pNotInterestedIn )
+ {
+ String sCurrentName = GetName();
+ bool bNameIsOK = ( sCurrentName.Len() > 0 )
+ && ( m_aProhibitedNames.find( sCurrentName ) == m_aProhibitedNames.end() );
+
+ m_aOK.Enable( bNameIsOK );
+
+ return 0L;
+ }
+
+//........................................................................
+} // namespace pcr
+//........................................................................
+