// $Id: property.cpp 1282 2006-06-09 09:46:49Z alex $ /* @@tag:xara-cn@@ DO NOT MODIFY THIS LINE ================================XARAHEADERSTART=========================== Xara LX, a vector drawing and manipulation program. Copyright (C) 1993-2006 Xara Group Ltd. Copyright on certain contributions may be held in joint with their respective authors. See AUTHORS file for details. LICENSE TO USE AND MODIFY SOFTWARE ---------------------------------- This file is part of Xara LX. Xara LX is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 as published by the Free Software Foundation. Xara LX and its component source files are 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 General Public License for more details. You should have received a copy of the GNU General Public License along with Xara LX (see the file GPL in the root directory of the distribution); if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA ADDITIONAL RIGHTS ----------------- Conditional upon your continuing compliance with the GNU General Public License described above, Xara Group Ltd grants to you certain additional rights. The additional rights are to use, modify, and distribute the software together with the wxWidgets library, the wxXtra library, and the "CDraw" library and any other such library that any version of Xara LX relased by Xara Group Ltd requires in order to compile and execute, including the static linking of that library to XaraLX. In the case of the "CDraw" library, you may satisfy obligation under the GNU General Public License to provide source code by providing a binary copy of the library concerned and a copy of the license accompanying it. Nothing in this section restricts any of the rights you have under the GNU General Public License. SCOPE OF LICENSE ---------------- This license applies to this program (XaraLX) and its constituent source files only, and does not necessarily apply to other Xara products which may in part share the same code base, and are subject to their own licensing terms. This license does not apply to files in the wxXtra directory, which are built into a separate library, and are subject to the wxWindows license contained within that directory in the file "WXXTRA-LICENSE". This license does not apply to the binary libraries (if any) within the "libs" directory, which are subject to a separate license contained within that directory in the file "LIBS-LICENSE". ARRANGEMENTS FOR CONTRIBUTION OF MODIFICATIONS ---------------------------------------------- Subject to the terms of the GNU Public License (see above), you are free to do whatever you like with your modifications. However, you may (at your option) wish contribute them to Xara's source tree. You can find details of how to do this at: http://www.xaraxtreme.org/developers/ Prior to contributing your modifications, you will need to complete our contributor agreement. This can be found at: http://www.xaraxtreme.org/developers/contribute/ Please note that Xara will not accept modifications which modify any of the text between the start and end of this header (marked XARAHEADERSTART and XARAHEADEREND). MARKS ----- Xara, Xara LX, Xara X, Xara X/Xtreme, Xara Xtreme, the Xtreme and Xara designs are registered or unregistered trademarks, design-marks, and/or service marks of Xara Group Ltd. All rights in these marks are reserved. Xara Group Ltd, Gaddesden Place, Hemel Hempstead, HP2 6EX, UK. http://www.xara.com/ =================================XARAHEADEREND============================ */ // // Property.cpp // // This file implements the basic useful functionality to implement a property tab. // This will be basically a tabbed dialog box but this linked list handles a lot // of the mundane work required to handle a MODELESS property tabbed dialog box. // // Curent users of this system are:- // - The layer roperties dialog box. Brought up from the layer gallery menu item. /* */ #include "camtypes.h" //#include "document.h" - in camtypes.h [AUTOMATICALLY REMOVED] //#include "spread.h" - in camtypes.h [AUTOMATICALLY REMOVED] //#include "docview.h" - in camtypes.h [AUTOMATICALLY REMOVED] #include "property.h" //#include "dialogop.h" // DialogOp header - in camtypes.h [AUTOMATICALLY REMOVED] //#include "nev.h" // error strings #include "layerprp.h" //#include "lyrprop.h" // tabs for the layer properties // The property tabs themselves #include "prpslyrs.h" // Layer properties tab handler #include "prpsgds.h" // Guides properties tab handler //#include "will.h" // _R(IDS_CLOSEDOCS) //#include "resource.h" // _R(IDS_CANCEL) // This is not compulsory, but you may as well put it in so that the correct version // of your file can be registered in the .exe DECLARE_SOURCE("$Revision: 1282 $"); // An implement to match the Declare in the .h file. // If you have many classes, it is recommended to place them all together, here at the start of the file CC_IMPLEMENT_DYNAMIC(PropertyTabs, ListItem) // This will get Camelot to display the filename and linenumber of any memory allocations // that are not released at program exit #define new CAM_DEBUG_NEW UnitType PropertyTabs::CurrentPageUnits = NOTYPE; // The units used to display page measurements in Document *PropertyTabs::pScopeDocument = NULL; // Pointer to the current document Document *PropertyTabs::pDocument = NULL; // Document we are supposed to be working on Spread *PropertyTabs::pSpread = NULL; // Spread we are supposed to be working on Layer *PropertyTabs::pActiveLayer = NULL; // Layer we are supposed to be working on Layer *PropertyTabs::pCurrentLayer = NULL; // Layer we are supposed to be working on //List PropertyTabs::PropertyTabsList; // The global list of installed options tabs. /****************************************************************************************** ******************************************************************************************/ // Code to handle a list of options tabs available to the system /******************************************************************************************** > PropertyTabs::PropertyTabs() Author: Neville_Humphrys (Xara Group Ltd) Created: 28/9/95 Purpose: Constructor. Errors: SeeAlso: PropertyTabsDlg; ********************************************************************************************/ PropertyTabs::PropertyTabs() { // Set up some good default values. // pScopeDocument = NULL; // pDocument = NULL; // pSpread = NULL; // CurrentPageUnits = NOTYPE; // pActiveLayer = NULL; // pCurrentLayer = NULL; } /******************************************************************************************** > PropertyTabs::Init() Author: Neville_Humphrys (Xara Group Ltd) Created: 28/9/95 Purpose: Initialiser. Errors: SeeAlso: PropertyTabsDlg; ********************************************************************************************/ BOOL PropertyTabs::Init() { // Do nothing for now. return TRUE; } //******************************************************************************************** // //> static BOOL PropertyTabs::DeclarePropertyTab(PropertyTabs *pProperty) // // Author: Neville // Created: 5/12/95 // Inputs: A pointer to a new PropertyTabs class already declared into the system // Returns: True if tab declared, False if something went wrong. // Purpose: A function to declare a new tab to the system. // SeeAlso: LayerProperty // //********************************************************************************************/ // //BOOL PropertyTabs::DeclarePropertyTab(PropertyTabs *pProperty) //{ // // First check to see if somebody has actually declared the pointer to be non null. // if (pProperty == NULL) return FALSE; // // if (!pProperty->Init()) // { // /* Error occured - report it and stop trying to initialise the options tab. */ // InformError(); // return TRUE; // } // PropertyTabsList.AddTail(pProperty); // // // All ok // return TRUE; //} // //******************************************************************************************** // //> static BOOL PropertyTabs::UndeclarePropertyTab(PropertyTabs *pProperty) // // Author: Neville // Created: 5/12/95 // Inputs: A pointer to a new PropertyTabs class already declared into the system // Returns: True if tab declared, False if something went wrong. // Purpose: A function to remove a tab handler that has been declared to the system. // SeeAlso: LayerProperty // //********************************************************************************************/ // //BOOL PropertyTabs::UndeclarePropertyTab(PropertyTabs *pProperty) //{ // // First check to see if somebody has actually declared the pointer to be non null. // if (pProperty == NULL) return FALSE; // // BOOL Found = FALSE; // PropertyTabs * pProps = PropertyTabs::GetFirst(); // while (pProps && !Found) // { // if (pProps == pProperty) // { // // First remove from the list // PropertyTabsList.RemoveItem(pProperty); // // Do not delete the class itself, as this list just stores the fact that // // this property tab is around. // pProps = NULL; // // // Flag, we have done as required and deleted the item // Found = TRUE; // } // else // pProps = PropertyTabs::GetNext(pProps); // } // // ERROR3IF(!Found,"PropertyTabs::UndeclarePropertyTab tab not found"); // // // All ok // return TRUE; //} // //******************************************************************************************** // //> static PropertyTabs *PropertyTabs::GetFirst() // // Author: Neville // Created: 28/9/95 // Returns: Pointer to the first PropertyTab, or NULL if none. // Purpose: Iterating through the list of PropertyTabs known to Camelot. This function // returns the first PropertyTabs. // SeeAlso: PropertyTabs::GetNext() // Scope: Static // //********************************************************************************************/ // //PropertyTabs *PropertyTabs::GetFirst() //{ // return (PropertyTabs *) PropertyTabsList.GetHead(); //} // //******************************************************************************************** // //> static PropertyTabs *PropertyTabs::GetNext(PropertyTabs *pPropertyTabs) // // Author: Neville // Created: 5/12/95 // Inputs: pPropertyTabs - pointer to the PropertyTabs to be used to get the following // PropertyTabs. // Returns: Pointer to the next PropertyTabs, or NULL if none. // Purpose: Iterating through the list of PropertyTabs known to Camelot. This function // returns the next PropertyTabs. // SeeAlso: PropertyTabs::GetFirst // //********************************************************************************************/ // //PropertyTabs *PropertyTabs::GetNext(PropertyTabs *pPropertyTabs) //{ // return (PropertyTabs *) PropertyTabsList.GetNext(pPropertyTabs); //} /****************************************************************************************** > virtual void PropertyTabs::SetDefaultUnits() Author: Neville_Humphrys (Xara Group Ltd) Created: 28/9/95 Inputs: - Outputs: - Returns: - Purpose: Sets up the units class variables to the default values. Errors: - SeeAlso: SetUpDocUnits; ******************************************************************************************/ void PropertyTabs::SetDefaultUnits() { // Just to be on the safe side set up some default values CurrentPageUnits = MILLIMETRES; // Set up random default units. } /****************************************************************************************** > virtual void PropertyTabs::SetUpDocUnits() Author: Neville_Humphrys (Xara Group Ltd) Created: 28/9/95 Inputs: - Outputs: - Returns: TRUE if set up ok, FALSE otherwise. Purpose: Sets up the units variable to the currently set document units Errors: - SeeAlso: SetDefaultUnits; ******************************************************************************************/ BOOL PropertyTabs::SetUpDocUnits() { BOOL SetUpOk = FALSE; // Set up the default document measurement units that are used // Get the page units from the doc unit list of the current document unless there // is no document present. // Otherwise just pick a random default. pDocument = Document::GetSelected(); if (pDocument == NULL) { // Just to be on the safe side set up some default values CurrentPageUnits = MILLIMETRES; } else { // Get the unit list attached to the current document DocUnitList* pDocUnitList = pDocument->GetDocUnitList(); ERROR3IF(pDocUnitList == NULL,"PropertyTabs::SetUpDocUnits No doc unit list attached to this doc yet"); if (pDocUnitList != NULL) { CurrentPageUnits = pDocUnitList->GetPageUnits(); // Set to the page units. // Flag that everything went ok SetUpOk = TRUE; } else { // Just to be on the safe side set up some default values CurrentPageUnits = MILLIMETRES; // Set up random default units. } } return (SetUpOk); } /******************************************************************************************** > virtual void PropertyTabs::SetCurrentDocAndSpread(const Document *pDoc) Author: Neville_Humphrys (Xara Group Ltd) Created: 28/9/95 Inputs: Pointer to the document to use, can be NULL of course. Outputs: - Returns: - Purpose: Sets up the document and spread that we are currently supposed to be working on. This can then be used by the tabs instead of each one using their own method to work it out. Errors: - SeeAlso: - ********************************************************************************************/ void PropertyTabs::SetCurrentDocAndSpread(Document *pDoc) { // Note this new document in our class variable. pDocument = pDoc; // Set up what we consider to be the current spread using the current document // class variable. if (pDocument) { pSpread = pDocument->FindFirstSpread(); // We will get the active layer of this spread if (pSpread) pActiveLayer = pSpread->FindActiveLayer(); } else { pSpread = NULL; pActiveLayer = NULL; } } /******************************************************************************************** > virtual void PropertyTabs::SetActiveLayer(Layer * pNewLayer) Author: Neville_Humphrys (Xara Group Ltd) Created: 3/10/95 Inputs: Pointer to the new active layer to use, can be NULL of course. Outputs: - Returns: - Purpose: Sets up the active layer that we are currently supposed to be working on. This can then be used by the tabs instead of each one using their own method to work it out. This may be different to a current layer used by say the layer properties tab as this will be the one that the layer properties tabbed dialog box was brought up over using the adjust click menu on the layer gallery. Errors: - SeeAlso: PropertyTabs::GetActiveLayer; LayerPropertyTabs::GetCurrentLayer; ********************************************************************************************/ void PropertyTabs::SetActiveLayer(Layer * pNewLayer) { pActiveLayer = pNewLayer; } /******************************************************************************************** > virtual Layer * PropertyTabs::GetActiveLayer() Author: Neville_Humphrys (Xara Group Ltd) Created: 3/10/95 Returns: A pointer to the current layer that should be used. Purpose: Sets up the layer that we are currently supposed to be working on. This can then be used by the tabs instead of each one using their own method to work it out. This may be different to a current layer used by say the layer properties tab as this will be the one that the layer properties tabbed dialog box was brought up over using the adjust click menu on the layer gallery. Errors: - SeeAlso: PropertyTabs::SetActiveLayer; LayerPropertyTabs::SetCurrentLayer; ********************************************************************************************/ Layer * PropertyTabs::GetActiveLayer() { return pActiveLayer; } /******************************************************************************************** > virtual Layer * PropertyTabs::GetGuideLayer() Author: Mark_Neves (Xara Group Ltd) Created: 5/10/95 Returns: A pointer to the guide layer of the associated spread, or NULL Purpose: Returns ptr to the guide layer to use, or NULL if it can't find one Errors: - SeeAlso: - ********************************************************************************************/ Layer * PropertyTabs::GetGuideLayer() { if (pSpread != NULL) return (pSpread->FindFirstGuideLayer()); return NULL; } /****************************************************************************************** > virtual BOOL PropertyTabs::GreyApplyNow() Author: Neville_Humphrys (Xara Group Ltd) Created: 28/9/95 Inputs: - Outputs: - Returns: TRUE if successful, else FALSE Purpose: Makes the Apply Now button on the main page of the tabbed dialog grey. Errors: - SeeAlso: - ******************************************************************************************/ BOOL PropertyTabs::GreyApplyNow() { // First, get a pointer to the dialog box that we are going to use DialogTabOp * pPropertiesDlg = GetTabbedDlg(); ERROR2IF(pPropertiesDlg == NULL, FALSE, "LayerPropertyTabs::GreyApplyNow called with no dialog pointer"); // Grey out the apply now button on the main page // Must restore the state of the currently selected tab as otherwise you might start // switching to talking to the main page when we are in the middle of talking to controls // on one of the pages and hence give rise to unknown controls messages when we try to // talk to the pages controls again. CDlgResID PageID = pPropertiesDlg->GetCurrentPageID(); // Get currently selected Tab id pPropertiesDlg->TalkToPage(0); pPropertiesDlg->EnableGadget(_R(ID_APPLY_NOW), FALSE); pPropertiesDlg->EnableGadget(_R(wxID_OK), FALSE); pPropertiesDlg->SetStringGadgetValue(_R(wxID_CANCEL),_R(IDS_CLOSEDOCS)); pPropertiesDlg->TalkToPage(PageID); // Select the originally selected tab return TRUE; } /****************************************************************************************** > virtual BOOL PropertyTabs::UngreyApplyNow() Author: Neville_Humphrys (Xara Group Ltd) Created: 28/9/95 Inputs: - Outputs: - Returns: TRUE if successful, else FALSE Purpose: Makes the Apply Now button on the main page of the tabbed dialog ungrey. Errors: - SeeAlso: - ******************************************************************************************/ BOOL PropertyTabs::UngreyApplyNow() { // First, get a pointer to the dialog box that we are going to use DialogTabOp * pPropertiesDlg = GetTabbedDlg(); ERROR2IF(pPropertiesDlg == NULL,FALSE,"LayerPropertyTabs::UngreyApplyNow called with no dialog pointer"); // Ungrey the apply now button on the main page // Must restore the state of the currently selected tab as otherwise you might start // switching to talking to the main page when we are in the middle of talking to controls // on one of the pages and hence give rise to unknown controls messages when we try to // talk to the pages controls again. CDlgResID PageID = pPropertiesDlg->GetCurrentPageID(); // Get currently selected Tab id pPropertiesDlg->TalkToPage(0); // Select the main tab pPropertiesDlg->EnableGadget(_R(ID_APPLY_NOW), TRUE); // ungrey button on main tab pPropertiesDlg->EnableGadget(_R(wxID_OK), TRUE); pPropertiesDlg->SetStringGadgetValue(_R(wxID_CANCEL),_R(IDS_CANCEL)); pPropertiesDlg->TalkToPage(PageID); // Select the originally selected tab return TRUE; } /****************************************************************************************** > virtual BOOL PropertyTabs::NewUnitsInSection() Author: Neville_Humphrys (Xara Group Ltd) Created: 28/9/95 Inputs: - Outputs: - Returns: TRUE if successful, else FALSE Purpose: Called when new default units chosen. Gives any tabbed dialog a chance to update any fields with new units in. This is the base class version and so will be used for any tabs which have no specified handling code. Errors: - SeeAlso: - ******************************************************************************************/ BOOL PropertyTabs::NewUnitsInSection() { // Called when new default units chosen // Would normally be overriden by a a particular tab return TRUE; } /****************************************************************************************** > BOOL virtual PropertyTabs::GreySection() Author: Neville_Humphrys (Xara Group Ltd) Created: 28/9/95 Inputs: - Outputs: - Returns: TRUE if successful, else FALSE Purpose: Called when the user has closed all documents. Gives any tabbed dialog a chance to grey any fields which are document specific. This is the base class version and so will be used for any tabs which have no specified handling code. Errors: - SeeAlso: PropertyTabs::UngreySection(); PropertyTabs::UpdateSection(); ******************************************************************************************/ BOOL PropertyTabs::GreySection() { // Called when the user has closed all documents // Would normally be overriden by a a particular tab return TRUE; } /****************************************************************************************** > virtual BOOL PropertyTabs::UngreySection() Author: Neville_Humphrys (Xara Group Ltd) Created: 28/9/95 Inputs: - Outputs: - Returns: TRUE if successful, else FALSE Purpose: Called when the user has opened a document. Gives any tabbed dialog a chance to update any fields which may have been greyed when the last document was closed. This is the base class version and so will be used for any tabs which have no specified handling code. Errors: - SeeAlso: PropertyTabs::GreySection(); PropertyTabs::UpdateSection(); ******************************************************************************************/ BOOL PropertyTabs::UngreySection() { // Called when the user has opened a document // Would normally be overriden by a a particular tab return TRUE; } /****************************************************************************************** > virtual BOOL PropertyTabs::UpdateSection() Author: Neville_Humphrys (Xara Group Ltd) Created: 28/9/95 Returns: TRUE if successful, else FALSE Purpose: Called when the user has clicked on a new document or opened a new document. Gives any tabbed dialog a chance to update any fields which are used to reflect the current document's status. This is the base class version and so will be used for any tabs which have no specified handling code. Errors: - SeeAlso: PropertyTabs::UngreySection(); PropertyTabs::GreySection(); ******************************************************************************************/ BOOL PropertyTabs::UpdateSection() { // Called when the user has opened a document // Would normally be overriden by a a particular tab return TRUE; } /****************************************************************************************** > virtual BOOL PropertyTabs::UpdateSpreadSection() Author: Neville_Humphrys (Xara Group Ltd) Created: 3/10/95 Returns: TRUE if successful, else FALSE Purpose: Called when the user has clicked or done something to change the selected spread. Gives any tabbed dialog a chance to update any fields which are used to reflect the current spread's status. This is the base class version and so will be used for any tabs which have no specified handling code. Errors: - SeeAlso: PropertyTabs::UngreySection(); PropertyTabs::GreySection(); SeeAlso: PropertyTabs::UpdateSection(); PropertyTabs::UpdateLayerSection(); ******************************************************************************************/ BOOL PropertyTabs::UpdateSpreadSection() { // Called when the user has changed the selected spread // Would normally be overriden by a a particular tab return TRUE; } /****************************************************************************************** > virtual BOOL PropertyTabs::UpdateLayerSection() Author: Neville_Humphrys (Xara Group Ltd) Created: 3/10/95 Returns: TRUE if successful, else FALSE Purpose: Called when the user has clicked or done something to change the selected layer. Gives any tabbed dialog a chance to update any fields which are used to reflect the current layer's status. This is the base class version and so will be used for any tabs which have no specified handling code. Errors: - SeeAlso: PropertyTabs::UngreySection(); PropertyTabs::GreySection(); SeeAlso: PropertyTabs::UpdateSection(); PropertyTabs::UpdateSpreadSection(); ******************************************************************************************/ BOOL PropertyTabs::UpdateLayerSection() { // Called when the user has changed the selected/active layer // Would normally be overriden by a a particular tab return TRUE; } /****************************************************************************************** > virtual BOOL PropertyTabs::UpdateGuidelineSection() Author: Mark_Neves (Xara Group Ltd) Created: 4/10/95 Returns: TRUE if successful, else FALSE Purpose: Called when the user has clicked or done something to change the guidelines of the *active* layer. Gives any tabbed dialog a chance to update any fields which are used to reflect the current layer's status. This is the base class version and so will be used for any tabs which have no specified handling code. Errors: - SeeAlso: PropertyTabs::UngreySection(); PropertyTabs::GreySection(); SeeAlso: PropertyTabs::UpdateSection(); PropertyTabs::UpdateSpreadSection(); ******************************************************************************************/ BOOL PropertyTabs::UpdateGuidelineSection() { // Called when the user has changed the selected/active layer // Would normally be overriden by a a particular tab return TRUE; } /****************************************************************************************** > virtual BOOL PropertyTabs::ColourListChanged(Document* pDoc) Author: Mark_Neves (Xara Group Ltd) Created: 9/10/95 inputs: pDoc = ptr to document that contains the changed list, or NULL if there's no longer a list Returns: TRUE if successful, else FALSE Purpose: Called when the colour list changes in some way. pDoc points to the doc that contains the list that's changed. If pDoc is NULL, then there is no longer a colour list (e.g. all docs closed) Errors: - SeeAlso: - ******************************************************************************************/ BOOL PropertyTabs::ColourListChanged(Document* pDoc) { return TRUE; } /****************************************************************************************** > virtual BOOL PropertyTabs::IsPropertyRequired() Author: Neville_Humphrys (Xara Group Ltd) Created: 28/9/95 Inputs: - Outputs: - Returns: Returns True if this tab is required. Purpose: Allows the layer properties options dialog code to determine if this tab belongs is required at this point. This base class version allow the majority of tabs to answer yes to this question and hence only needs overiding if the tab is not required. Errors: - ******************************************************************************************/ BOOL PropertyTabs::IsPropertyRequired() { return FALSE; } /******************************************************************************************** > virtual void PropertyTabs::SetCurrentLayer(Layer * pNewLayer) Author: Neville_Humphrys (Xara Group Ltd) Created: 3/10/95 Inputs: Pointer to the layer to use, can be NULL of course. Outputs: - Returns: - Purpose: Sets up the layer that we are currently supposed to be working on. This can then be used by the tabs instead of each one using their own method to work it out. This may be different to the active layer set up in the baseclass. The current one as far as we are concerned is the one that the layer properties tabbed dialog box was brought up over using the adjust click menu on the layer gallery. Errors: - SeeAlso: PropertyTabs::GetActiveLayer; PropertyTabs::GetCurrentLayer; ********************************************************************************************/ void PropertyTabs::SetCurrentLayer(Layer * pNewLayer) { PropertyTabs::pCurrentLayer = pNewLayer; } /******************************************************************************************** > virtual Layer * PropertyTabs::GetCurrentLayer() Author: Neville_Humphrys (Xara Group Ltd) Created: 3/10/95 Returns: A pointer to the current layer that should be used. Purpose: Sets up the layer that we are currently supposed to be working on. This can then be used by the tabs instead of each one using their own method to work it out. This may be different to the active layer set up in the baseclass. The current one as far as we are concerned is the one that the layer properties tabbed dialog box was brought up over using the adjust click menu on the layer gallery. Errors: - SeeAlso: PropertyTabs::SetActiveLayer; PropertyTabs::SetCurrentLayer; ********************************************************************************************/ Layer * PropertyTabs::GetCurrentLayer() { return PropertyTabs::pCurrentLayer; } /****************************************************************************************** > virtual BOOL PropertyTabs::SetOkState(BOOL Val) Author: Ranbir_Rana (Xara Group Ltd) Created: 16/07/97 Inputs: Val - BOOLEAN Value to determine whether to grey/ungrey the OK button. Outputs: - Returns: TRUE if successful, else FALSE Purpose: Greys/Ungreys the OK button on the main page of the tabbed dialog. ******************************************************************************************/ BOOL PropertyTabs::SetOkState(BOOL Val) { // Get a pointer to the dialog box that we are going to use. DialogTabOp * pPropertiesDlg = GetTabbedDlg(); ERROR2IF(pPropertiesDlg == NULL,FALSE,"LayerPropertyTabs::UngreyApplyNow called with no dialog pointer"); // Grey/Ungrey the OK button on the main page. // Get currently selected Tab id CDlgResID PageID = pPropertiesDlg->GetCurrentPageID(); // Select the main tab pPropertiesDlg->TalkToPage(0); // ungrey button on main tab pPropertiesDlg->EnableGadget(_R(ID_OK), Val); // Select the originally selected tab pPropertiesDlg->TalkToPage(PageID); return TRUE; } /****************************************************************************************** ********************************************************************************************/