2009-04-10 01:57 PM - last edited on 2023-07-13 04:20 PM by Doreena Deng
2009-04-11 10:37 AM
2009-04-11 04:18 PM
2009-04-11 06:06 PM
2009-04-11 06:32 PM
It seems, this functions are not documented so look in headers.
I think, a docking works by default for any palette. (But I am not sure).But I cannot have the "dock" effect until applying DGCreateDockablePalette()..
2009-04-11 07:07 PM
2009-04-12 06:01 PM
// Declare global variable to hold a palette object reference DG::Palette* g_pPalette = NULL; ... // Inintialize the reference in menu command handler // and show the palette if (!g_pPalette) g_pPalette = new DG::Palette(32420); g_pPalette->BeginEventProcessing(); g_pPalette->Show();But it does not work: the panel became visible just for a bit of second and then disappears 😞
2009-04-13 05:45 AM
2009-04-13 06:25 AM
Vladimir wrote:
1. As far as I understand from your answers, AC SDK has a set of handy C++ classes, which are an alternative to the pure API calls.
Is there exists any documentation or examples of using of this classes - besides headers in the SDK's Support\Modules folder?
2009-04-14 11:02 PM