Tuesday, August 14, 2012
Monday, July 23, 2012
Markdown cheatsheet
I create Stack Exchange markdown cheat sheet. It is very simple, consists of 4 pdf pages each of them contains 2 pages of info.
It contains all major markdown syntax items and Stack Exchange additions.
Download here.
Example of page |
It contains all major markdown syntax items and Stack Exchange additions.
Download here.
Saturday, July 21, 2012
mWatch455
Another mobile application released.
mWatch455 is simple chronograph for mobile phone.
sourceforge project page and video
mWatch455 is simple chronograph for mobile phone.
sourceforge project page and video
Friday, June 15, 2012
Friday, June 1, 2012
Linux. Eclipse + wxWidgets. Screencast.
Here is video showing how to install wxWidgets and Eclipse IDE to Linux system and make them work together. This screencast based on my previous post with little exceptions (java was already installed, also I installed libgtk2.0). Some pieces were cut(biggest of them - 'make' wxWidgets output). At the end of the video you can see customized 'minimal' wxWidgets application builded with Eclipse IDE.
Here is link to video.
Wednesday, May 16, 2012
Linux. Eclipse + wxWidgets
In this post I describe how I installed wxWidgets and Eclipse at Linux system and make them work together.
Here is my plan:
Here is my plan:
1. Install wxWidgets
1.1 download
I use this link. It's last stable version for this moment.
1.2 unpack
I use this command: tar -xvf <wxWidgets archive.tar.gz>1.3 build
- change directory to unpacked archive cd <wxWidgets folder>
- make build folder mkdir <wxWidgets build folder>
- change current directory to build folder cd <wxWidgets build folder>
- I select following parameters for configure script:
- then type make
- then sudo make install
- and sudo ldconfig
1.4 *checkpoint*: build 'minimal' sample application
I run make command in <wxWidgets build folder>/minimal> directory and get minimal wxWidgets application.2. Install Eclipse
2.1 install Java if it's not installed
I use this link.2.2 *checkpoint*: get Java's version
java -version2.3 download Eclipse
I need Eclipse IDE for C/C++ Developers. It can be found here.2.4 unpack
tar -xvf <Eclipse archive.tar.gz>
There is no install procedure. Just change directory to unpacked Eclipse folder and run ./eclipse
2.5 *checkpoint*: build trivial C++ project
3. Connect Eclipse with wxWidgets.
3.1 set project options
- navigate Project > Properties > C/C++ Build > Settings > Tool Settings
- add to C++ Compiler > Command line pattern following string `wx-config --cxxflags`
- add to C++ Compiler > Includes path to wxWidgets/include folder
- add to C++ Linker > Command line pattern following string `wx-config --libs`
3.2 *checkpoint*: build 'minimal' sample application from Eclipse
After all this steps I got Linux system with installed wxWidgets and Eclipse IDE.
Tuesday, May 8, 2012
about wxWidgets install
In this post I speak about common questions of installing wxWidgets.
Installing wxWidgets can be confusing for newcomers from Windows systems but it quite easy for them who knows how to install software from sources at Linux systems. Main difficult is that you should compile wxWidgets libraries by yourself. Common process of install is something like this:
In next post I'll describe how I installed wxWidgets at Linux system.
Installing wxWidgets can be confusing for newcomers from Windows systems but it quite easy for them who knows how to install software from sources at Linux systems. Main difficult is that you should compile wxWidgets libraries by yourself. Common process of install is something like this:
- Download wxWidgets sources.
- Unpack sources.
- Build wxWidgets from sources.
- Configure IDE if you use it.
In next post I'll describe how I installed wxWidgets at Linux system.
Thursday, May 3, 2012
about wxWidgets
There are several ways to create GUI application based on C++. One of them is wxWidgets.
In short, wxWidgets is a C++ library to create cross-platform GUI applications.
Here I put some main features of this library:
You can read some info about this library at official project site or wikipedia page.
You can compare wxWidgets with other toolkits and with Qt.
You can even get to know why you shouldn't use wxWidgets.
There are a lot of tasks where wxWidgets is right tool.
I used this tool to create my first C++ GUI application - notes455:
In short, wxWidgets is a C++ library to create cross-platform GUI applications.
Here I put some main features of this library:
- native look and feel for every platform
- license allows to create GPL and proprietary applications
- small size of library/application
- additional auxiliary classes
- it is quite popular among developers
You can read some info about this library at official project site or wikipedia page.
You can compare wxWidgets with other toolkits and with Qt.
You can even get to know why you shouldn't use wxWidgets.
There are a lot of tasks where wxWidgets is right tool.
I used this tool to create my first C++ GUI application - notes455:
notes455 running on Windows... |
...and on Linux |
Wednesday, April 25, 2012
Friday, April 20, 2012
Subscribe to:
Posts (Atom)