summaryrefslogtreecommitdiff
path: root/chart2/source/controller/dialogs/dlg_InsertAxis_Grid.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'chart2/source/controller/dialogs/dlg_InsertAxis_Grid.cxx')
-rw-r--r--chart2/source/controller/dialogs/dlg_InsertAxis_Grid.cxx165
1 files changed, 0 insertions, 165 deletions
diff --git a/chart2/source/controller/dialogs/dlg_InsertAxis_Grid.cxx b/chart2/source/controller/dialogs/dlg_InsertAxis_Grid.cxx
deleted file mode 100644
index 8bd1b86c2..000000000
--- a/chart2/source/controller/dialogs/dlg_InsertAxis_Grid.cxx
+++ /dev/null
@@ -1,165 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*************************************************************************
- *
- * 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
- * <http://www.openoffice.org/license.html>
- * for a copy of the LGPLv3 License.
- *
- ************************************************************************/
-
-// MARKER(update_precomp.py): autogen include statement, do not remove
-#include "precompiled_chart2.hxx"
-#include "dlg_InsertAxis_Grid.hxx"
-#include "dlg_InsertAxis_Grid.hrc"
-
-#include "ResId.hxx"
-#include "chartview/ChartSfxItemIds.hxx"
-#include "SchSlotIds.hxx"
-#include "HelpIds.hrc"
-#include "NoWarningThisInCTOR.hxx"
-#include "ObjectNameProvider.hxx"
-
-// header for class SfxBoolItem
-#include <svl/eitem.hxx>
-
-//.............................................................................
-namespace chart
-{
-//.............................................................................
-
-InsertAxisOrGridDialogData::InsertAxisOrGridDialogData()
- : aPossibilityList(6)
- , aExistenceList(6)
-{
- sal_Int32 nN = 0;
- for(nN=6;nN--;)
- aPossibilityList[nN]=true;
- for(nN=6;nN--;)
- aExistenceList[nN]=false;
-}
-
-//==============================
-//
-// SchAxisDlg
-//
-//==============================
-
-SchAxisDlg::SchAxisDlg( Window* pWindow
- , const InsertAxisOrGridDialogData& rInput, sal_Bool bAxisDlg )
- :
- ModalDialog( pWindow, SchResId( DLG_AXIS_OR_GRID )),
-
- aFlPrimary( this, SchResId( FL_PRIMARY_AXIS )),
- aFlPrimaryGrid( this, SchResId( FL_PRIMARY_GRID )),
- aCbPrimaryX( this, SchResId( CB_X_PRIMARY )),
- aCbPrimaryY( this, SchResId( CB_Y_PRIMARY )),
- aCbPrimaryZ( this, SchResId( CB_Z_PRIMARY )),
-
- aFlSecondary( this, SchResId( FL_SECONDARY_AXIS )),
- aFlSecondaryGrid( this, SchResId( FL_SECONDARY_GRID )),
- aCbSecondaryX( this, SchResId( CB_X_SECONDARY )),
- aCbSecondaryY( this, SchResId( CB_Y_SECONDARY )),
- aCbSecondaryZ( this, SchResId( CB_Z_SECONDARY )),
-
- aPbOK( this, SchResId( BTN_OK )),
- aPbCancel( this, SchResId( BTN_CANCEL )),
- aPbHelp( this, SchResId( BTN_HELP ))
-
- //rOutAttrs( rInAttrs )
-{
- FreeResource();
- if(!bAxisDlg)
- {
- SetHelpId( HID_INSERT_GRIDS );
- SetText( ObjectNameProvider::getName(OBJECTTYPE_GRID,true) );
-
- aCbPrimaryX.SetHelpId( HID_SCH_CB_XGRID );
- aCbPrimaryY.SetHelpId( HID_SCH_CB_YGRID );
- aCbPrimaryZ.SetHelpId( HID_SCH_CB_ZGRID );
- aCbSecondaryX.SetHelpId( HID_SCH_CB_SECONDARY_XGRID );
- aCbSecondaryY.SetHelpId( HID_SCH_CB_SECONDARY_YGRID );
- aCbSecondaryZ.SetHelpId( HID_SCH_CB_SECONDARY_ZGRID );
-
- aFlPrimary.Hide();
- aFlSecondary.Hide();
- aFlPrimaryGrid.Show();
- aFlSecondaryGrid.Show();
- }
- else
- {
- SetText( ObjectNameProvider::getName(OBJECTTYPE_AXIS,true) );
-
- //todo: remove if secondary z axis are possible somewhere
- {
- aCbSecondaryZ.Hide();
-
- Size aSize( GetSizePixel() );
- aSize.Height() -= ( aCbSecondaryZ.GetPosPixel().Y() - aCbSecondaryY.GetPosPixel().Y() );
- SetSizePixel(aSize);
- }
- }
-
- aCbPrimaryX.Check( rInput.aExistenceList[0] );
- aCbPrimaryY.Check( rInput.aExistenceList[1] );
- aCbPrimaryZ.Check( rInput.aExistenceList[2] );
- aCbSecondaryX.Check( rInput.aExistenceList[3] );
- aCbSecondaryY.Check( rInput.aExistenceList[4] );
- aCbSecondaryZ.Check( rInput.aExistenceList[5] );
-
- aCbPrimaryX.Enable( rInput.aPossibilityList[0] );
- aCbPrimaryY.Enable( rInput.aPossibilityList[1] );
- aCbPrimaryZ.Enable( rInput.aPossibilityList[2] );
- aCbSecondaryX.Enable( rInput.aPossibilityList[3] );
- aCbSecondaryY.Enable( rInput.aPossibilityList[4] );
- aCbSecondaryZ.Enable( rInput.aPossibilityList[5] );
-}
-
-SchAxisDlg::~SchAxisDlg()
-{
-}
-
-void SchAxisDlg::getResult( InsertAxisOrGridDialogData& rOutput )
-{
- rOutput.aExistenceList[0]=aCbPrimaryX.IsChecked();
- rOutput.aExistenceList[1]=aCbPrimaryY.IsChecked();
- rOutput.aExistenceList[2]=aCbPrimaryZ.IsChecked();
- rOutput.aExistenceList[3]=aCbSecondaryX.IsChecked();
- rOutput.aExistenceList[4]=aCbSecondaryY.IsChecked();
- rOutput.aExistenceList[5]=aCbSecondaryZ.IsChecked();
-}
-
-SchGridDlg::SchGridDlg( Window* pParent, const InsertAxisOrGridDialogData& rInput )
- : SchAxisDlg( pParent, rInput, false )//rInAttrs, b3D, bNet, bSecondaryX, bSecondaryY, false )
-{
-}
-
-SchGridDlg::~SchGridDlg()
-{
-}
-
-//.............................................................................
-} //namespace chart
-//.............................................................................
-
-
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */