ShareCommandPool.h
// Copyright 2010 ESRI // // All rights reserved under the copyright laws of the United States // and applicable international laws, treaties, and conventions. // // You may freely redistribute and use this sample code, with or // without modification, provided you include the original copyright // notice and use restrictions. // // See the use restrictions. // #ifndef __CUSTOMIZATIONTOOLBAR_SAMPLE_H__ #define __CUSTOMIZATIONTOOLBAR_SAMPLE_H__ #include <iostream> #include <string.h> // Motif Headers #define String esriXString #define Time esriXTime #define Cursor esriXCursor #define Object esriXObject #define ObjectClass esriXObjectClass #include <Xm/Xm.h> #include <Xm/MainW.h> #include <Xm/Form.h> #include <Xm/Protocols.h> #include <Xm/ToggleB.h> #include <Xm/Label.h> #include <Xm/List.h> #undef String #undef Time #undef Cursor #undef Object #undef ObjectClass // ArcObjects Headers // Engine #include <ArcSDK.h> // Controls #include <Ao/AoMotifControls.h> extern "C" void XtResizeWidget(Widget, _XtDimension, _XtDimension, _XtDimension); void ToggleCallback(Widget w, XtPointer client_data, XtPointer call_data); void UpdateUsageCount(); HRESULT AddToolbarItems(); void LicenseApp(); void FormSetup(int argc, char* argv[], XtAppContext* app_context); void CloseAppCallback(Widget w, XtPointer client_data, XtPointer call_data); #endif // __CUSTOMIZATIONTOOLBAR_SAMPLE_H__