Click here to Skip to main content
15,884,007 members
Articles / Desktop Programming / MFC
Article

Java 'Swing' style components written in MFC

Rate me:
Please Sign up or sign in to vote.
4.75/5 (13 votes)
23 May 2000 166.5K   2.4K   36   18
A set of MFC classes the duplicate the Java Swing look and feel
  • Download demo project - 77 Kb
  • Sample Image - swing.jpg

    Introduction

    This library presents a set of MFC classes that replicate the Java Swing style controls.

    I sat down for two whole months to write this library. I was inspired from the cool GUI which Java Swing components offer. Although I tried to create the simulation as the same, in some places it was not possible. Win32 API does not have support to redraw a scrollbar. I also tried to make the combo box as good as possible. The progress bar looks even cooler, as does the slider. I hope you like these components - but email me if you have any bug fixes or suggestions.

    Note:The release version of this MFC extension dll will only work with with release versions of your application, and the debug version with the debug version of your application. Take care to avoid errors.

    To use the library

    First you need to compile the Swing libary. Unpack the downloaded zip and compile the project in the Swing/ directory. This will give you a swing.lib file for linking, and a swing.dll file that you application will use.

    In your project, be sure to include the "swing.h" header file, and also link to the swing.lib library file.

    To get the swing look and feel, set your dialog's background color in your application's InitInstance()

    SetDialogBkColor(RGB(204, 204, 204), RGB(0, 0, 0));

    Using class wizard create control variables for the controls. Then replace the variable types with those given below

    CButton (button) CSwingButton
    CButton (checkbox) CSwingCheckBox
    CButton (radio) CSwingRadio
    CEdit CSwingEdit
    CRichEditCtrl CSwingRichEditCtrl
    CProgressCtrl CSwingProgressCtrl
    CComboBox CSwingComboBox
    CSliderCtrl CSwingSliderCtrl
    CWnd CSwingBorderWnd

    To set the caption for a button use the function

    void SetButtonText (CString pstr)
    CString GetButtonText ()

    Simillarly for a checkbox and radio use:

    void SetRadioText (CString pstr)
    CString GetRadioText ()
    
    void SetCheckboxText (CString pstr)
    CString GetCheckboxText()

    For a progress bar use:

    void SetCaption (CString pstr)
    CString GetCaption ()

    You can also use following methods for check boxes and radios:

    void SetCheck (BOOL check)
    BOOL GetCheck ()

    As all the windows are derived classes, all the other member functions will work.

    There is a problem with radio buttons. You will have to set the control which comes after the last radio button of the last group also with the group property.

    I have also given the facilit where if there is a window which needs only a swing border, you can use the class wizard to create its variable and set its type to CSwingBorderWnd

    License

    This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

    A list of licenses authors might use can be found here


    Written By
    India India
    This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

    Comments and Discussions

     
    GeneralMy vote of 1 Pin
    tinku5nov1-Nov-10 23:43
    tinku5nov1-Nov-10 23:43 
    GeneralI like it. Pin
    greatghoul11-Oct-08 17:57
    greatghoul11-Oct-08 17:57 
    GeneralIt doesn't work using MFC as a static DLL Pin
    Member 91096027-Oct-04 23:04
    Member 91096027-Oct-04 23:04 
    Generalslider doesn't do tic marks Pin
    FrankRowe16-Jan-03 10:01
    FrankRowe16-Jan-03 10:01 
    GeneralRe: slider doesn't do tic marks Pin
    FrankRowe22-Jan-03 9:33
    FrankRowe22-Jan-03 9:33 
    GeneralSwing look for XP Pin
    Robert Pittenger, MCPD-EAD6-Apr-02 16:43
    Robert Pittenger, MCPD-EAD6-Apr-02 16:43 
    GeneralNice Intellictual Exercise, but . . . Pin
    Zac Howland20-Mar-02 5:24
    Zac Howland20-Mar-02 5:24 
    GeneralRe: Nice Intellictual Exercise, but . . . Pin
    Brian Olej5-Nov-02 12:09
    Brian Olej5-Nov-02 12:09 
    GeneralYes, a wonderful intellictual exercise... Pin
    Anonymous15-Jul-03 6:19
    Anonymous15-Jul-03 6:19 
    GeneralYou should make another one of these on check boxes Pin
    LiquidKnight8-Mar-02 20:01
    LiquidKnight8-Mar-02 20:01 
    GeneralThis won't work. Pin
    Amanjit Gill28-Feb-02 14:46
    Amanjit Gill28-Feb-02 14:46 
    QuestionWhy??? Pin
    4-Feb-02 7:50
    suss4-Feb-02 7:50 
    AnswerRe: Why??? Pin
    19-Feb-02 7:05
    suss19-Feb-02 7:05 
    GeneralRe: Why??? Pin
    10-Mar-02 23:59
    suss10-Mar-02 23:59 
    GeneralGood work Pin
    Nish Nishant27-Jan-02 1:04
    sitebuilderNish Nishant27-Jan-02 1:04 
    QuestionHow to create Java "Swing" Frame? Pin
    Member 19594-Aug-00 19:04
    Member 19594-Aug-00 19:04 
    GeneralNice sample, but one small little bug Pin
    Santosh Rao25-May-00 0:14
    Santosh Rao25-May-00 0:14 
    Hi,

    That is a really nice looking sample.

    If you go into the edit control and continuosly type some characters till it exceeds the visible content the text is slightly drwan out on to the frame.

    Regards
    Santosh Ra
    GeneralRe: Nice sample, but one small little bug Pin
    Stephan Poirier12-Feb-03 17:31
    Stephan Poirier12-Feb-03 17:31 

    General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

    Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.