Developer forums (C::B DEVELOPMENT STRICTLY!) > Plugins development

ThreadSearch 0.7 release

<< < (14/16) > >>

dje:

--- Quote from: sps on July 06, 2007, 01:25:59 pm ---Great work! dje.

I loved this plugin. I used 0.6 version as well but 0.7 is really stable.

--- End quote ---
Thanks !  :D Nice to read it !

mariocup:
Hi dje,

as thread search supports the preview of search results it would be cool to have the same functionality for search and replace. So thread search can help to refactor the names of variables showing the preview and have a dialog to confirm the replace action.

Pecan:
Here is the best I can do for a Makefile.am .

However, when I add it to the CB automake system, the compiles for the contribs are no longer invoked. Even with --enable-contribs . So I guess I'm not pointing to it correctly.

It does create a Makefile.in and a Makefile. The Makefile works and the .libs is created when I force the Makefile to run.

Someone else will have to figure out how to correctly plug it into the CB automake system.


--- Code: ---
INCLUDES = $(WX_CXXFLAGS) \
        $(WX_GTK2_CFLAGS) \
-I$(top_srcdir)/src/include \
-I$(top_srcdir)/src/include/wxscintilla/include \
        -I$(top_srcdir)/src/include/wxFlatNotebook/include

libdir = $(pkgdatadir)/plugins

lib_LTLIBRARIES = libThreadSearch.la

libThreadSearch_la_LDFLAGS = -module -version-info 0:1:0 -shared -no-undefined -avoid-version

libThreadSearch_la_LIBADD = $(PLUGIN_WX_LIBS) ../../../sdk/libcodeblocks.la

libThreadSearch_la_SOURCES = DirectoryParamsPanel.cpp \
SearchInPanel.cpp \
TextFileSearcher.cpp \
TextFileSearcherRegEx.cpp \
TextFileSearcherText.cpp \
ThreadSearch.cpp \
ThreadSearchConfPanel.cpp \
ThreadSearchDefaultPanel.cpp \
ThreadSearchEvent.cpp \
ThreadSearchFindData.cpp \
ThreadSearchThread.cpp \
ThreadSearchTrace.cpp \
ThreadSearchView.cpp

noinst_HEADERS =  DirectoryParamsPanel.h \
SearchInPanel.h \
TextFileSearcher.h \
TextFileSearcherRegEx.h \
TextFileSearcherText.h \
ThreadSearch.h \
ThreadSearchConfPanel.h \
ThreadSearchControlIds.h \
ThreadSearchDefaultPanel.h \
ThreadSearchEvent.h \
ThreadSearchFindData.h \
ThreadSearchThread.h \
ThreadSearchTrace.h \
ThreadSearchView.h

pkgdatadir = $(datadir)/@PACKAGE@/images/settings

dist_pkgdata_DATA = ThreadSearch.png \
ThreadSearch-off.png

EXTRA_DIST = manifest.xml

ThreadSearch.zip:
PWD=`pwd` cd $(srcdir) && zip $(PWD)/ThreadSearch.zip manifest.xml *.png *.xrc > /dev/null

install-data-local: ThreadSearch.zip
$(mkinstalldirs) $(DESTDIR)$(datadir)/@PACKAGE@/; \
if test -f $(srcdir)/ThreadSearch.zip; then p=$(srcdir)/ThreadSearch.zip; else p=ThreadSearch.zip; fi; \
$(INSTALL_DATA) $$p $(DESTDIR)$(datadir)/@PACKAGE@/ThreadSearch.zip


--- End code ---

MortenMacFly:

--- Quote from: Pecan on July 08, 2007, 10:44:40 pm ---Someone else will have to figure out how to correctly plug it into the CB automake system.

--- End quote ---
Did you forget to register this plugin inside configure.in (it's makefiles), maybe?!

mariocup:
Hi dje,

I noticed that in the threadsearch toolbar the tool tips are missing.

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version