Shared libs now get installed correctly on Linux.
Fixed a compile bug on bitmap. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@672 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
53
TODO.txt
53
TODO.txt
@@ -1,52 +1,37 @@
|
|||||||
********************* TODO list for wxWindows 2 ******************************
|
********************* TODO list for wxWindows 2 ******************************
|
||||||
|
|
||||||
The items are grouped by platform (generic, MSW, GTK...) and inside by
|
|
||||||
subject. The first 2 columns containg the following codes:
|
|
||||||
|
|
||||||
Priority classification: Amount of work expected:
|
|
||||||
9 next point release q quick fix
|
|
||||||
8 next release s small change
|
|
||||||
7 as soon as possible l a little work
|
|
||||||
6 soon w some work
|
|
||||||
5 should be included b big change
|
|
||||||
4 nice to have m major change
|
|
||||||
3 consider including ? don't know how to fix
|
|
||||||
2 maybe not - unclassified
|
|
||||||
1 probably not
|
|
||||||
- unclassified
|
|
||||||
|
|
||||||
After the subject the name in brackets indicates the person who is going to do
|
|
||||||
it.
|
|
||||||
|
|
||||||
=============================== common ========================================
|
=============================== common ========================================
|
||||||
|
|
||||||
4w wxString optimization (VZ)
|
wxSocket, wxTCP etc..
|
||||||
allocate more memory than needed to avoid reallocation each time when
|
|
||||||
operator+ or += is used.
|
|
||||||
|
|
||||||
6b stream classes (VZ)
|
wxMultiMedia
|
||||||
|
|
||||||
=============================== generic ======================================
|
=============================== generic ======================================
|
||||||
|
|
||||||
7s wxTreeCtrl root item (RR)
|
wxTreeCtrl keyboard handling
|
||||||
root item is not shown currently (unlike in MSW version)
|
wxTreeCtrl icon support
|
||||||
|
|
||||||
5w wxImageList
|
wxListCtrl icon support in list mode
|
||||||
it's not implemented currently, to do (assuming that all images have the
|
|
||||||
same size - no resizing should be done to simplify the job)
|
|
||||||
|
|
||||||
================================ MSW ==========================================
|
================================ MSW ==========================================
|
||||||
|
|
||||||
7w consistent keyboard interface and focus behaviour (VZ)
|
Consistent keyboard interface and focus behaviour
|
||||||
currently, the focus is lost all the time (after a MessageBox, for example)
|
currently, the focus is lost all the time (after a MessageBox, for example)
|
||||||
and sometimes TABbing through controls doesn't work
|
and sometimes TABbing through controls doesn't work
|
||||||
|
|
||||||
================================ GTK ==========================================
|
================================ GTK ==========================================
|
||||||
|
|
||||||
9m keyboard interface (RR)
|
Set fonts in GTK widgets
|
||||||
TAB traversal, Alt-letter accelerators for the controls and accelerators
|
Set colour/baclgroundcolour in GTK widgets
|
||||||
for menu items - TODO.
|
Correct tab navigation (seems to be a GTK feature)
|
||||||
|
DnD (postponed as GTK 1.2 will have new DnD)
|
||||||
|
Clipboard
|
||||||
|
Help system (not sure about this one)
|
||||||
|
Show accelerator in menus
|
||||||
|
More controls with bitmaps
|
||||||
|
Speed up bitmap saving
|
||||||
|
wxBitmapHandler
|
||||||
|
Fix printing of bitmaps
|
||||||
|
TrueType support (just kidding)
|
||||||
|
|
||||||
3b wxTreeCtrl native implementation?
|
wxTreeCtrl not yet finshed
|
||||||
GTK has a GtkCTree widget which seems to be quite close to the Windows
|
|
||||||
standard control - what about writing a native wxTreeCtrl based on it?
|
|
||||||
|
@@ -49,6 +49,8 @@ class wxMask: public wxObject
|
|||||||
GdkBitmap *GetBitmap() const;
|
GdkBitmap *GetBitmap() const;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|
||||||
|
friend wxBitmap;
|
||||||
|
|
||||||
GdkBitmap *m_bitmap;
|
GdkBitmap *m_bitmap;
|
||||||
|
|
||||||
|
@@ -49,6 +49,8 @@ class wxMask: public wxObject
|
|||||||
GdkBitmap *GetBitmap() const;
|
GdkBitmap *GetBitmap() const;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|
||||||
|
friend wxBitmap;
|
||||||
|
|
||||||
GdkBitmap *m_bitmap;
|
GdkBitmap *m_bitmap;
|
||||||
|
|
||||||
|
@@ -81,7 +81,9 @@ install::
|
|||||||
@echo " Copying shared library"
|
@echo " Copying shared library"
|
||||||
@cd $(WXBASEDIR)/lib/$(OS) ; \
|
@cd $(WXBASEDIR)/lib/$(OS) ; \
|
||||||
rm -f $(libdir)/$(SHARED_LIBRARY) ; \
|
rm -f $(libdir)/$(SHARED_LIBRARY) ; \
|
||||||
$(INSTALL_PROGRAM) $(SHARED_LIBRARY) $(libdir)/$(SHARED_LIBRARY)
|
$(INSTALL_PROGRAM) $(SHARED_LIBRARY) $(libdir)/$(SHARED_LIBRARY) ; \
|
||||||
|
$(LN_S) $(SHARED_LIBRARY) $(libdir)/lib$(LIB_TARGET).so.$(LIB_MAJOR) ; \
|
||||||
|
$(LN_S) $(SHARED_LIBRARY) $(libdir)/lib$(LIB_TARGET).so
|
||||||
@echo " "
|
@echo " "
|
||||||
@echo "Installation complete. You may have to run ldconfig!"
|
@echo "Installation complete. You may have to run ldconfig!"
|
||||||
@echo " "
|
@echo " "
|
||||||
|
@@ -36,7 +36,7 @@ while test $# -gt 0; do
|
|||||||
echo $exec_prefix
|
echo $exec_prefix
|
||||||
;;
|
;;
|
||||||
--version)
|
--version)
|
||||||
echo @WXGTK_VERSION@
|
echo 1.93
|
||||||
;;
|
;;
|
||||||
--cflags)
|
--cflags)
|
||||||
if test @includedir@ != /usr/include ; then
|
if test @includedir@ != /usr/include ; then
|
||||||
|
Reference in New Issue
Block a user