Further fixes to Dialog Editor; additions to .dsp files

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5390 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2000-01-14 17:55:49 +00:00
parent dfd6b52fdb
commit 8caa4ed10e
15 changed files with 205 additions and 81 deletions

View File

@@ -95,10 +95,10 @@ public:
inline void SetBorderWrap(bool on) { m_wrap = on; }; inline void SetBorderWrap(bool on) { m_wrap = on; };
// cells // cells
inline bool IsAlive(int i, int j) const; bool IsAlive(int i, int j) const;
inline bool IsAlive(Cell c) const; bool IsAlive(Cell c) const;
inline int GetX(Cell c) const; int GetX(Cell c) const;
inline int GetY(Cell c) const; int GetY(Cell c) const;
const CellArray* GetCells() const { return &m_cells; }; const CellArray* GetCells() const { return &m_cells; };
const CellArray* GetChangedCells() const { return &m_changed; }; const CellArray* GetChangedCells() const { return &m_changed; };

View File

@@ -18,6 +18,24 @@ News
</tr> </tr>
</table> </table>
<H3>January 14th, 2000</H3><P>
<ul>
<li>A 2.1.12 release is not far off.
<li>Mumit Khan of Mingw32 fame has been testing wxWindows against Mingw32,
to eliminate some bugs in both products and get wxWindows compilation as a DLL working
for Mingw32.
<li>Vadim has added his wxDateTime and wxCalendarCtrl classes and samples to the CVS archive.
<li>TIFF support has been added, and wxImage speeded up.
<li>Guillermo Rodriguez Garcia has added a new Game of Life demo.
<li>The DDE sample now works in socket mode, at last.
<li>Vadim has got clipboard copy and paste working for metafiles, by adding an enhanced
metafile class.
<li>The wxWindows web site is now hosted on SourceGear's server, with a bug tracker and
other facilities to follow shortly.
</ul>
<H3><a name="release2_1_11">November 9th, 1999</a></H3><P> <H3><a name="release2_1_11">November 9th, 1999</a></H3><P>
<a href="download.htm" target=wxmain>wxWindows 2.1.11</a> is now available for Windows, Motif and GTK. <a href="download.htm" target=wxmain>wxWindows 2.1.11</a> is now available for Windows, Motif and GTK.

View File

@@ -47,6 +47,14 @@ enum wxCalendarDateBorder
class WXDLLEXPORT wxCalendarDateAttr class WXDLLEXPORT wxCalendarDateAttr
{ {
protected:
// This has to be before the use of Init(), for MSVC++ 1.5
void Init(wxCalendarDateBorder border = wxCAL_BORDER_NONE)
{
m_border = border;
m_holiday = FALSE;
}
public: public:
// ctors // ctors
wxCalendarDateAttr() { Init(); } wxCalendarDateAttr() { Init(); }
@@ -90,13 +98,6 @@ public:
const wxFont& GetFont() const { return m_font; } const wxFont& GetFont() const { return m_font; }
wxCalendarDateBorder GetBorder() const { return m_border; } wxCalendarDateBorder GetBorder() const { return m_border; }
protected:
void Init(wxCalendarDateBorder border = wxCAL_BORDER_NONE)
{
m_border = border;
m_holiday = FALSE;
}
private: private:
wxColour m_colText, wxColour m_colText,
m_colBack, m_colBack,

View File

@@ -73,7 +73,9 @@ WXDLLEXPORT_DATA(extern HFONT) wxSTATUS_LINE_FONT;
# ifdef __BORLANDC__ # ifdef __BORLANDC__
# ifdef __WIN32__ # ifdef __WIN32__
# define CASTWNDPROC typedef int (pascal * WndProcCast) ();
# define CASTWNDPROC (WndProcCast)
// # define CASTWNDPROC
# else # else
typedef int (pascal * WndProcCast) (); typedef int (pascal * WndProcCast) ();
# define CASTWNDPROC (WndProcCast) # define CASTWNDPROC (WndProcCast)

View File

@@ -345,6 +345,7 @@ class WXDLLEXPORT wxPropertyListFrame: public wxFrame
virtual bool Initialize(void); virtual bool Initialize(void);
virtual wxPropertyListPanel *OnCreatePanel(wxFrame *parent, wxPropertyListView *v); virtual wxPropertyListPanel *OnCreatePanel(wxFrame *parent, wxPropertyListView *v);
inline virtual wxPropertyListPanel *GetPropertyPanel(void) const { return m_propertyPanel; } inline virtual wxPropertyListPanel *GetPropertyPanel(void) const { return m_propertyPanel; }
inline wxPropertyListView* GetView() const { return m_view; }
private: private:
wxPropertyListView* m_view; wxPropertyListView* m_view;

View File

@@ -65,7 +65,7 @@ public:
private: private:
wxDialUpManager *m_dial; wxDialUpManager *m_dial;
DECLARE_EVENT_TABLE(); DECLARE_EVENT_TABLE()
}; };
// Define a new frame type: this is going to be our main frame // Define a new frame type: this is going to be our main frame

View File

@@ -433,7 +433,7 @@ bool wxPropertyListView::CreateControls()
wxFont guiFont = settings.GetSystemFont(wxSYS_DEFAULT_GUI_FONT); wxFont guiFont = settings.GetSystemFont(wxSYS_DEFAULT_GUI_FONT);
#ifdef __WXMSW__ #ifdef __WXMSW__
wxFont *boringFont = wxTheFontList->FindOrCreateFont(guiFont.GetPointSize(), wxMODERN, wxNORMAL, wxNORMAL, FALSE, "Courier New"); wxFont *boringFont = wxTheFontList->FindOrCreateFont(guiFont.GetPointSize()+1, wxMODERN, wxNORMAL, wxNORMAL, FALSE, "Courier New");
#else #else
wxFont *boringFont = wxTheFontList->FindOrCreateFont(guiFont.GetPointSize(), wxTELETYPE, wxNORMAL, wxNORMAL); wxFont *boringFont = wxTheFontList->FindOrCreateFont(guiFont.GetPointSize(), wxTELETYPE, wxNORMAL, wxNORMAL);
#endif #endif

View File

@@ -600,17 +600,17 @@ void wxDC::DoDrawBitmap( const wxBitmap &bmp, wxCoord x, wxCoord y, bool useMask
if (!bmp.Ok()) if (!bmp.Ok())
return; return;
bool needsPixelCopy = false ; bool needsPixelCopy = FALSE ;
bool isPrinter = false ; bool isPrinter = FALSE ;
if (IsKindOf(CLASSINFO(wxPrinterDC)) ) if (IsKindOf(CLASSINFO(wxPrinterDC)) )
{ {
isPrinter = true ; isPrinter = TRUE ;
if ( ::GetDeviceCaps((HDC) m_hDC, RASTERCAPS) & RC_STRETCHDIB ) if ( ::GetDeviceCaps((HDC) m_hDC, RASTERCAPS) & RC_STRETCHDIB )
{ {
} }
else else
{ {
needsPixelCopy = true ; needsPixelCopy = TRUE ;
} }
} }
// If we're not drawing transparently, and not drawing to a printer, // If we're not drawing transparently, and not drawing to a printer,

View File

@@ -162,7 +162,7 @@ LRESULT APIENTRY wxToolTipWndProc(HWND hwndTT,
} }
} }
return ::CallWindowProc(gs_wndprocToolTip, hwndTT, msg, wParam, lParam); return ::CallWindowProc(CASTWNDPROC gs_wndprocToolTip, hwndTT, msg, wParam, lParam);
} }
#endif // wxUSE_TTM_WINDOWFROMPOINT #endif // wxUSE_TTM_WINDOWFROMPOINT

View File

@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
// Name: mse/utils.cpp // Name: msw/utils.cpp
// Purpose: Various utilities // Purpose: Various utilities
// Author: Julian Smart // Author: Julian Smart
// Modified by: // Modified by:
@@ -876,7 +876,14 @@ wxChar *wxLoadUserResource(const wxString& resourceName, const wxString& resourc
if ( !theText ) if ( !theText )
return NULL; return NULL;
wxChar *s = copystring(theText); // Not all compilers put a zero at the end of the resource (e.g. BC++ doesn't).
// so we need to find the length of the resource.
int len = ::SizeofResource(wxGetInstance(), hResource);
wxChar *s = new wxChar[len+1];
wxStrncpy(s,theText,len);
s[len]=0;
// wxChar *s = copystring(theText);
// Obsolete in WIN32 // Obsolete in WIN32
#ifndef __WIN32__ #ifndef __WIN32__

View File

@@ -801,6 +801,10 @@ SOURCE=.\msw\dummy.cpp
# End Source File # End Source File
# Begin Source File # Begin Source File
SOURCE=.\msw\enhmeta.cpp
# End Source File
# Begin Source File
SOURCE=.\msw\filedlg.cpp SOURCE=.\msw\filedlg.cpp
# End Source File # End Source File
# Begin Source File # Begin Source File

View File

@@ -799,6 +799,10 @@ SOURCE=.\msw\dummy.cpp
# End Source File # End Source File
# Begin Source File # Begin Source File
SOURCE=.\msw\enhmeta.cpp
# End Source File
# Begin Source File
SOURCE=.\msw\filedlg.cpp SOURCE=.\msw\filedlg.cpp
# End Source File # End Source File
# Begin Source File # Begin Source File

View File

@@ -527,22 +527,48 @@ void wxResourceManager::AssociateResource(wxItemResource *resource, wxWindow *wi
m_resourceAssociations.Put((long)resource, win); m_resourceAssociations.Put((long)resource, win);
wxNode *node = resource->GetChildren().First(); wxNode *node = resource->GetChildren().First();
while (node) wxNode* node2 = win->GetChildren().First();
while (node && node2)
{ {
wxItemResource *child = (wxItemResource *)node->Data(); wxItemResource *child = (wxItemResource *)node->Data();
wxWindow* childWindow = (wxWindow*) node2->Data();
if (child->GetId() != childWindow->GetId())
{
wxString msg;
msg.Printf("AssociateResource: error when associating child window %ld with resource %ld", child->GetId(), childWindow->GetId());
wxMessageBox(msg, "Dialog Editor problem", wxOK);
}
else if (childWindow->GetName() != child->GetName())
{
wxString msg;
msg.Printf("AssociateResource: error when associating child window with resource %s", child->GetName() ? (const char*) child->GetName() : "(unnamed)");
wxMessageBox(msg, "Dialog Editor problem", wxOK);
}
else
{
AssociateResource(child, childWindow);
}
// New code to avoid the problem of duplicate ids and names. We simply
// traverse the child windows and child resources in parallel,
// checking for any mismatch.
#if 0
wxWindow *childWindow = (wxWindow *)m_resourceAssociations.Get((long)child); wxWindow *childWindow = (wxWindow *)m_resourceAssociations.Get((long)child);
if (!childWindow) if (!childWindow)
childWindow = win->FindWindow(child->GetName()); // childWindow = win->FindWindow(child->GetName());
childWindow = win->FindWindow(child->GetId());
if (childWindow) if (childWindow)
AssociateResource(child, childWindow); AssociateResource(child, childWindow);
else else
{ {
char buf[200]; wxString msg;
sprintf(buf, "AssociateResource: cannot find child window %s", child->GetName() ? (const char*) child->GetName() : "(unnamed)"); msg.Printf("AssociateResource: cannot find child window %s", child->GetName() ? (const char*) child->GetName() : "(unnamed)");
wxMessageBox(buf, "Dialog Editor problem", wxOK); wxMessageBox(msg, "Dialog Editor problem", wxOK);
} }
#endif
node = node->Next(); node = node->Next();
node2 = node2->Next();
} }
} }
@@ -1363,6 +1389,9 @@ void wxResourceManager::CopySize()
{ {
item->SetSize(-1, -1, firstW, firstH); item->SetSize(-1, -1, firstW, firstH);
int fw = firstW;
int fh = firstH;
wxItemResource* resource = wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(item); wxItemResource* resource = wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(item);
wxItemResource* parentResource = wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(item->GetParent()); wxItemResource* parentResource = wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(item->GetParent());
@@ -1372,9 +1401,9 @@ void wxResourceManager::CopySize()
if (parentResource->GetResourceStyle() & wxRESOURCE_DIALOG_UNITS) if (parentResource->GetResourceStyle() & wxRESOURCE_DIALOG_UNITS)
{ {
wxSize sz = item->GetParent()->ConvertPixelsToDialog(wxSize(firstW, firstH)); wxSize sz = item->GetParent()->ConvertPixelsToDialog(wxSize(firstW, firstH));
firstW = sz.x; firstH = sz.y; fw = sz.x; fh = sz.y;
} }
resource->SetSize(resource->GetX(), resource->GetY(), firstW, firstH); resource->SetSize(resource->GetX(), resource->GetY(), fw, fh);
} }
} }

View File

@@ -100,6 +100,7 @@ wxDialogEditorPropertyListFrame::~wxDialogEditorPropertyListFrame()
{ {
delete m_propSheet; delete m_propSheet;
delete m_propInfo; delete m_propInfo;
if (wxPropertyInfo::sm_propertyWindow == this)
wxPropertyInfo::sm_propertyWindow = NULL; wxPropertyInfo::sm_propertyWindow = NULL;
} }
@@ -112,10 +113,30 @@ wxDialogEditorPropertyListFrame::~wxDialogEditorPropertyListFrame()
bool wxPropertyInfo::Edit(wxWindow *WXUNUSED(parent), const wxString& title) bool wxPropertyInfo::Edit(wxWindow *WXUNUSED(parent), const wxString& title)
{ {
if (sm_propertyWindow) if (sm_propertyWindow)
{
wxWindowPropertyInfo* thisProp = (wxWindowPropertyInfo*) this;
wxWindowPropertyInfo* oldProp = (wxWindowPropertyInfo*) (((wxDialogEditorPropertyListFrame *) sm_propertyWindow)->GetInfo());
if (oldProp->GetWindow() == thisProp->GetWindow())
{ {
sm_propertyWindow->Raise(); sm_propertyWindow->Raise();
return TRUE; return TRUE;
} }
else
{
int w, h, x, y;
sm_propertyWindow->GetSize(& w, & h);
sm_propertyWindow->GetPosition(& x, & y);
wxResourceManager::GetCurrentResourceManager()->GetPropertyWindowSize().width = w;
wxResourceManager::GetCurrentResourceManager()->GetPropertyWindowSize().height = h;
wxResourceManager::GetCurrentResourceManager()->GetPropertyWindowSize().x = x;
wxResourceManager::GetCurrentResourceManager()->GetPropertyWindowSize().y = y;
// Close the window, so we can create a new one for the different window
sm_propertyWindow->Destroy();
sm_propertyWindow = (wxDialogEditorPropertyListFrame *) NULL;
}
}
int width = wxResourceManager::GetCurrentResourceManager()->GetPropertyWindowSize().width; int width = wxResourceManager::GetCurrentResourceManager()->GetPropertyWindowSize().width;
int height = wxResourceManager::GetCurrentResourceManager()->GetPropertyWindowSize().height; int height = wxResourceManager::GetCurrentResourceManager()->GetPropertyWindowSize().height;
@@ -665,7 +686,9 @@ bool wxWindowPropertyInfo::InstantiateResource(wxItemResource *resource)
wxString str(m_propertyWindow->GetName()); wxString str(m_propertyWindow->GetName());
resource->SetName(str); resource->SetName(str);
#if 0 #if 0 // Why did we comment this out? Possibly because of rounding errors
// that will build up as the conversion is repeatedly done.
// so only do the conversion when a resize happens.
int x, y, w, h; int x, y, w, h;
if (m_propertyWindow->IsKindOf(CLASSINFO(wxPanel))) if (m_propertyWindow->IsKindOf(CLASSINFO(wxPanel)))
@@ -900,6 +923,36 @@ wxProperty *wxStaticTextPropertyInfo::GetProperty(wxString& name)
bool wxStaticTextPropertyInfo::SetProperty(wxString& name, wxProperty *property) bool wxStaticTextPropertyInfo::SetProperty(wxString& name, wxProperty *property)
{ {
wxStaticText* itemWindow = (wxStaticText*) m_propertyWindow;
if (name == "label")
{
// Because setting a wxStaticText control's label may change the
// size, we must get the size and instantiate the resource immediately.
itemWindow->SetLabel(property->GetValue().StringValue());
int w, h;
wxItemResource *resource = wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(itemWindow);
m_propertyWindow->GetSize(&w, &h);
// m_propertyWindow->GetPosition(&x, &y);
// We need to convert to dialog units if
// the parent resource specifies dialog units.
if (m_propertyWindow->GetParent())
{
wxItemResource* parentResource = wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow->GetParent());
if (parentResource->GetResourceStyle() & wxRESOURCE_DIALOG_UNITS)
{
// wxPoint pt = m_propertyWindow->GetParent()->ConvertPixelsToDialog(wxPoint(x, y));
// x = pt.x; y = pt.y;
wxSize sz = m_propertyWindow->GetParent()->ConvertPixelsToDialog(wxSize(w, h));
w = sz.x; h = sz.y;
}
}
resource->SetSize(resource->GetX(), resource->GetY(), w, h);
return TRUE;
}
else
return wxItemPropertyInfo::SetProperty(name, property); return wxItemPropertyInfo::SetProperty(name, property);
} }

View File

@@ -29,6 +29,8 @@ public:
long style = wxDEFAULT_FRAME_STYLE, const wxString& name = "frame"); long style = wxDEFAULT_FRAME_STYLE, const wxString& name = "frame");
~wxDialogEditorPropertyListFrame(); ~wxDialogEditorPropertyListFrame();
wxPropertyInfo* GetInfo() const { return m_propInfo; }
private: private:
wxPropertySheet* m_propSheet; wxPropertySheet* m_propSheet;
wxPropertyValidatorRegistry m_registry; wxPropertyValidatorRegistry m_registry;
@@ -99,6 +101,9 @@ class wxWindowPropertyInfo: public wxPropertyInfo
// Set the window style // Set the window style
void SetWindowStyle(wxWindow* win, long style, bool set); void SetWindowStyle(wxWindow* win, long style, bool set);
wxWindow* GetWindow() const { return m_propertyWindow; }
wxItemResource* GetResource() const { return m_propertyResource; }
protected: protected:
wxWindow* m_propertyWindow; wxWindow* m_propertyWindow;
wxItemResource* m_propertyResource; wxItemResource* m_propertyResource;