Update to WTL

Issue #11 resolved
zoomorph repo owner created an issue

WTL looks like it has a very high learning curve. :-(

Comments (4)

  1. Michael Pujos

    Using WTL is a good idea.

    The main advantage would be the ability to resize the "Find release" and "Release" dialogs, based on specified widget constraints specified with related macros in the class definition (example):

    BEGIN_DLGRESIZE_MAP(CMainDlg)
            DLGRESIZE_CONTROL(IDC_SERVER_TREE, DLSZ_SIZE_X | DLSZ_SIZE_Y)
            DLGRESIZE_CONTROL(IDC_ML_SEARCH_EDIT, DLSZ_SIZE_X |DLSZ_MOVE_Y)
            DLGRESIZE_CONTROL(IDC_ML_SEARCH_BUTTON, DLSZ_MOVE_X | DLSZ_MOVE_Y)
            DLGRESIZE_CONTROL(IDC_ML_SEARCH_HELP_BUTTON, DLSZ_MOVE_X | DLSZ_MOVE_Y)
    END_DLGRESIZE_MAP()
    
  2. Log in to comment