Click here to Skip to main content
Click here to Skip to main content

Java 'Swing' style components written in MFC

By , 23 May 2000
 
<!-- Download Links -->
  • Download demo project - 77 Kb
  • <!-- Article image -->

    Sample Image - swing.jpg

    <!-- Main HTML starts here -->

    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

    About the Author

    No Biography provided

    Sign Up to vote   Poor Excellent
    Add a reason or comment to your vote: x
    Votes of 3 or less require a comment

    Comments and Discussions

     
    Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
    You must Sign In to use this message board.
    Search this forum  
        Spacing  Noise  Layout  Per page   
    GeneralMy vote of 1membertinku5nov1-Nov-10 23:43 
    GeneralI like it.membergreatghoul11-Oct-08 17:57 
    GeneralIt doesn't work using MFC as a static DLLmemberelove27-Oct-04 23:04 
    Generalslider doesn't do tic marksmemberFrankRowe16-Jan-03 10:01 
    GeneralRe: slider doesn't do tic marksmemberFrankRowe22-Jan-03 9:33 
    GeneralSwing look for XPmemberRobert Pittenger6-Apr-02 16:43 
    GeneralNice Intellictual Exercise, but . . .memberZac Howland20-Mar-02 5:24 
    GeneralRe: Nice Intellictual Exercise, but . . .memberBrian O.5-Nov-02 12:09 
    GeneralYes, a wonderful intellictual exercise...sussAnonymous15-Jul-03 6:19 
    GeneralYou should make another one of these on check boxesmemberLiquidKnight8-Mar-02 20:01 
    GeneralThis won't work.memberAmanjit Gill28-Feb-02 14:46 
    QuestionWhy???member_XXX_4-Feb-02 7:50 
    AnswerRe: Why???memberAnonymous19-Feb-02 7:05 
    GeneralRe: Why???memberAnonymous10-Mar-02 23:59 
    GeneralGood workmemberNish [BusterBoy]27-Jan-02 1:04 
    QuestionHow to create Java "Swing" Frame?susshuwenwei4-Aug-00 19:04 
    GeneralNice sample, but one small little bugsussSantosh Rao25-May-00 0:14 
    GeneralRe: Nice sample, but one small little bugsussStephan Poirier12-Feb-03 17:31 

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

    Permalink | Advertise | Privacy | Mobile
    Web04 | 2.6.130617.1 | Last Updated 24 May 2000
    Article Copyright 2000 by Abhijit Bhole
    Everything else Copyright © CodeProject, 1999-2013
    Terms of Use
    Layout: fixed | fluid