
Monkey Log Viewer
Source (link to git-repo or to original if based on someone elses unmodified work): Add the source-code for this project on opencode.net
The Monkey Log Viewer is a viewer for log files.
Feature
- multi tab.
- keyword highlighting.
- keyword statistics.
- highlight colours are customizable.
- export HTML.
- zoom in/out.
- printing.
9 years ago
1.1.0
- added support for program update.
- added chart view.
- added results view.
- added file browser support.
- changed shortcuts for paste. (ctrl + shift + o -> ctrl + v)
- fixed minor bugs.
9 years ago
1.1.0
- added support for program update.
- added chart view.
- added results view.
- added file browser support.
- changed shortcuts for paste. (ctrl + shift + o -> ctrl + v)
- fixed minor bugs.
pietrom
7 years ago
Report
marcovictor
10 years ago
But i received this warnings after build:
C:/Qt/2010.05/monkeyLogViewer/Source/MainWindow/MainWindow.cpp:469: warning: C4100: 'progress' : unreferenced formal parameter
C:/Qt/2010.05/monkeyLogViewer/Source/LogViewer/LogViewer.cpp:307: warning: C4100: 'newBlockCount' : unreferenced formal parameter
C:/Qt/2010.05/monkeyLogViewer/Source/Option/HighlightSetupPage.cpp:331: warning: C4100: 'previous' : unreferenced formal parameter
C:/Qt/2010.05/monkeyLogViewer/Source/Option/HighlightSetupPage.cpp:394: warning: C4100: 'style' : unreferenced formal parameter
C:/Qt/2010.05/monkeyLogViewer/Source/Keyword/KeywordButtonGroup.cpp:142: warning: C4100: 'button' : unreferenced formal parameter
tks.
Report
marcovictor
10 years ago
Menu->Build->Clean All
Menu->Build->Run qmake
Menu->Build->Rebuild All
Source\Setting\INIManager.cpp(19) : fatal error C1083: Cannot open include file: 'Source/Config.h': No such file or directory
Source\MainWindow\MainWindow.cpp(19) : fatal error C1083: Cannot open include file: 'Source/Config.h': No such file or directory
MenuBar.cpp
Source\MainWindow\MenuBar.cpp(20) : fatal error C1083: Cannot open include file: 'Source/Config.h': No such file or directory
TabBar.cpp
Source\MainWindow\TabBar.cpp(19) : fatal error C1083: Cannot open include file: 'Source/Utils/LoadingWidget.h': No such file or directory
Qt SDK 1.1 Beta
Windows XP
Regards.
Report
jungilhan
10 years ago
In my case the error did not occur. (Win XP, SDK 1.1 beta)
please add INCLUDEPATH variable in monkeyLogViewer.pro file.
INCLUDEPATH += ./
this is my build log. (MainWindow.cpp)
please check the "-I" option.
--------------------------------------
g++ -c -g -frtti -fexceptions -mthreads -Wall -DUNICODE -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_GUI_LIB -DQT_CORE_LIB -DQT_HAVE_MMX -DQT_HAVE_3DNOW -DQT_HAVE_SSE -DQT_HAVE_MMXEXT -DQT_HAVE_SSE2 -DQT_THREAD_SUPPORT -DQT_NEEDS_QMAIN -I"c:\DevKits\QtSDK\Desktop\Qt\4.7.2\mingw\include\QtCore" -I"c:\DevKits\QtSDK\Desktop\Qt\4.7.2\mingw\include\QtGui" -I"c:\DevKits\QtSDK\Desktop\Qt\4.7.2\mingw\include" -I"..\..\..\monkeyLogViewer-1.0.1.tar\monkeyLogViewer" -I"c:\DevKits\QtSDK\Desktop\Qt\4.7.2\mingw\include\ActiveQt" -I"debug" -I"..\..\..\monkeyLogViewer-1.0.1.tar\monkeyLogViewer" -I"." -I"c:\DevKits\QtSDK\Desktop\Qt\4.7.2\mingw\mkspecs\win32-g++" -o debug\MainWindow.o ..\..\..\monkeyLogViewer-1.0.1.tar\monkeyLogViewer\Source\MainWindow\MainWindow.cpp
Best regards.
Report