Changeset 1675


Ignore:
Timestamp:
Dec 31, 2012, 12:15:44 AM (12 years ago)
Author:
Gregg Young
Message:

Enhance traget directory drop to give the option of changing the directory or carrying out an operation to the current target; Added an error message for target=None; Added parameter to SetTargetDir. Ticket 373

Location:
trunk/dll
Files:
10 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/dll/collect.c

    r1673 r1675  
    17071707      switch (SHORT1FROMMP(mp1)) {
    17081708      case IDM_SETTARGET:
    1709         SetTargetDir(hwnd, FALSE);
     1709        SetTargetDir(hwnd, FALSE, NULL);
    17101710        break;
    17111711
  • TabularUnified trunk/dll/dircnrs.c

    r1673 r1675  
    18141814      switch (SHORT1FROMMP(mp1)) {
    18151815      case IDM_SETTARGET:
    1816         SetTargetDir(hwnd, FALSE);
     1816        SetTargetDir(hwnd, FALSE, NULL);
    18171817        break;
    18181818
  • TabularUnified trunk/dll/fm3res.rc

    r1671 r1675  
    6262                copy, move and delete operations
    6363  05 Sep 12 SHL Sync collector menu with docs
     64  30 Dec 12 GKY Enhance traget directory drop to give the option of changing the directory or carrying out an
     65                operation to the current target; Added an error message for target = None;
    6466 
    6567***********************************************************************/
     
    34033405    IDS_FM2CMDHELPTEXT2                   "\r\rType ""/SAVE"" or ""/NOSAVE"" to save (or not) cmd lines between sessions.\r\r[Up arrow] or [down arrow] or [+] button for listbox of previous command lines, then [Delete] to remove one or [Enter] to reuse.\r\rOr type a command to be executed"
    34043406    IDS_FM2CMDHELPTEXT3                   " (metastrings like %%a available.)\r\rDouble-click entry field to simulate hitting [Enter].\r\rF5 is the accelerator for this mini-command line."
     3407    IDS_DROPSETSTARGET                    "Do you wish to use this directory as the new target directory? \nYes sets target\nNo proceeds with drag/drop operation to current target"
     3408    IDS_NOTARGETSET                       "A target directory has not been set"
    34053409  END
    34063410
  • TabularUnified trunk/dll/fm3str.h

    r1664 r1675  
    4646  04 Aug 12 GKY Changes to allow copy and move over readonly files with a warning dialog; also added a warning dialog
    4747                for delete of readonly files
     48  30 Dec 12 GKY Enhance traget directory drop to give the option of changing the directory or carrying out an
     49                operation to the current target; Added an error message for target = None;
    4850
    4951***********************************************************************/
     
    107109#define IDS_INIFAILURETEXT                                    51
    108110#define IDS_DUPLICATEHOTKEYTEXT                               52
     111#define IDS_DROPSETSTARGET                                    53
     112#define IDS_NOTARGETSET                                       54
    109113#define IDS_HELPCMDTEXT                                       56
    110114#define IDS_ZEROBYTETEXT                                      58
  • TabularUnified trunk/dll/mainwnd.c

    r1673 r1675  
    18241824      SetPresParams(hwnd,
    18251825                    &RGBGREY, &rgb, &RGBGREY, FNT_8HELVETICA);
    1826       SetTargetDir(hwnd, TRUE);
     1826      SetTargetDir(hwnd, TRUE, NULL);
    18271827    }
    18281828    return 0;
     
    18991899
    19001900  case DM_DROP:
    1901     if (targetdir) {
     1901    if (targetdir && strlen(targetdir) > 2) {
    19021902      CNRDRAGINFO cnd;
    19031903      LISTINFO *li;
    1904       ULONG action = UM_ACTION;
     1904      ULONG action = UM_ACTION, ret;
    19051905
    19061906      if (emphasized) {
     
    19161916      CheckPmDrgLimit(cnd.pDragInfo);
    19171917      if (li) {
     1918        if (!li->list[1] && !IsFile(li->list[0])) {
     1919          ret = saymsg(MB_YESNO,
     1920                   HWND_DESKTOP,
     1921                       NullStr,
     1922                       GetPString(IDS_DROPSETSTARGET));
     1923          if (ret == MBID_YES) {
     1924            SetTargetDir(hwnd, TRUE, li->list[0]);
     1925            break;
     1926          }
     1927        }
    19181928        strcpy(li->targetpath, targetdir);
    19191929        strcat(li->targetpath, PCSZ_BACKSLASH);
     
    20332043          FreeListInfo(li);
    20342044        else
    2035           WinSendMsg(hwndTree, UM_ACTION, MPFROMP(li), MPFROMLONG(action));
    2036       }
    2037       break;
     2045          WinSendMsg(hwndTree, UM_ACTION, MPFROMP(li), MPFROMLONG(action));
     2046    }
     2047    else {
     2048      CNRDRAGINFO cnd;
     2049      LISTINFO *li;
     2050
     2051      if (emphasized) {
     2052        emphasized = FALSE;
     2053        DrawTargetEmphasis(hwnd, emphasized);
     2054      }
     2055      memset(&cnd, 0, sizeof(cnd));
     2056      cnd.pDragInfo = (PDRAGINFO) mp1;
     2057      cnd.pRecord = NULL;
     2058      li = DoFileDrop(hwnd,
     2059                      NULL,
     2060                      TRUE, MPFROM2SHORT(TREE_CNR, CN_DROP), MPFROMP(&cnd));
     2061      CheckPmDrgLimit(cnd.pDragInfo);
     2062      if (li && !li->list[1] && !IsFile(li->list[0]))
     2063        SetTargetDir(hwnd, TRUE, li->list[0]);
     2064      else
     2065        saymsg(MB_ENTER | MB_ICONASTERISK, hwnd,
     2066               GetPString(IDS_WARNINGTEXT),
     2067               GetPString(IDS_NOTARGETSET));
     2068    }
     2069    break;
    20382070
    20392071  case WM_CHAR:
     
    34383470    PrfQueryProfileString(fmprof, FM3Str, szKey, NULL, targetdir, sizeof(targetdir));
    34393471    PrfWriteProfileString(fmprof, FM3Str, "TargetDir", targetdir);
    3440     SetTargetDir(NULLHANDLE, TRUE);
     3472    SetTargetDir(NULLHANDLE, TRUE, NULL);
    34413473  }
    34423474  size = sizeof(SWP);
     
    47254757
    47264758  case IDM_SETTARGET:
    4727     SetTargetDir(hwnd, FALSE);
     4759    SetTargetDir(hwnd, FALSE, NULL);
    47284760    break;
    47294761
  • TabularUnified trunk/dll/mkdir.c

    r1673 r1675  
    1515  28 Jun 09 GKY Added AddBackslashToPath() to remove repeatative code.
    1616  23 Oct 10 GKY Add ForwardslashToBackslash function to streamline code
     17  30 Dec 12 GKY Enhance traget directory drop to give the option of changing the directory or carrying out an
     18                operation to the current target; Added an error message for target=None;
     19                Added parameter to SetTargetDir
    1720
    1821***********************************************************************/
     
    224227}
    225228
    226 void SetTargetDir(HWND hwnd, BOOL justshow)
     229/*
     230 * SetTargetDir sets or unsets the target directory
     231 * either from the walk dialog or a directory dropped
     232 * on the drivesback bar which is passed as "newtarget".
     233 * justshow allows you to update the target without opening
     234 * the walk dialog.
     235 */
     236void SetTargetDir(HWND hwnd, BOOL justshow, PSZ newtarget)
    227237{
    228238
     
    250260    }
    251261  }
    252 
     262  if (newtarget && justshow)
     263    strcpy(targetdir, newtarget);
    253264  if (hwndBack) {
    254265    if (fShowTarget)
  • TabularUnified trunk/dll/mkdir.h

    r1210 r1675  
    77
    88  Copyright (c) 1993-98 M. Kimes
    9   Copyright (c) 2008 Steven H. Levine
     9  Copyright (c) 2013 Steven H. Levine
    1010
    1111  Change log
     12  30 Dec 12 GKY Enhance traget directory drop to give the option of changing the directory or carrying out an
     13                operation to the current target; Added an error message for target=None;
     14                Added parameter to SetTargetDir
    1215
    1316***********************************************************************/
     
    1922BOOL PMMkDir(HWND hwnd, CHAR * filename, BOOL copy);
    2023APIRET SetDir(HWND hwndClient, HWND hwnd, CHAR * dir, INT flags);
    21 void SetTargetDir(HWND hwnd, BOOL justshow);
     24void SetTargetDir(HWND hwnd, BOOL justshow, PSZ newtarget);
    2225
    2326// Data declarations
  • TabularUnified trunk/dll/notebook.c

    r1673 r1675  
    15741574
    15751575  case UM_SETUP5:
    1576     SetTargetDir(hwnd, FALSE);
     1576    SetTargetDir(hwnd, FALSE, NULL);
    15771577    WinSetDlgItemText(hwnd, CFGG_TARGETDIR, targetdir);
    15781578    return 0;
     
    22002200          PostMsg(WinQueryWindow(hwndMain, QW_PARENT),
    22012201                  WM_UPDATEFRAME, MPFROMLONG(FCF_SIZEBORDER), MPVOID);
    2202         SetTargetDir(hwnd, TRUE);
     2202        SetTargetDir(hwnd, TRUE, NULL);
    22032203      }
    22042204      dummy = WinQueryButtonCheckstate(hwnd, CFGM_SEPARATEPARMS);
  • TabularUnified trunk/dll/seeall.c

    r1673 r1675  
    39853985    switch (SHORT1FROMMP(mp1)) {
    39863986    case IDM_SETTARGET:
    3987       SetTargetDir(hwnd, FALSE);
     3987      SetTargetDir(hwnd, FALSE, NULL);
    39883988      break;
    39893989
  • TabularUnified trunk/dll/treecnr.c

    r1674 r1675  
    23952395      switch (SHORT1FROMMP(mp1)) {
    23962396      case IDM_SETTARGET:
    2397         SetTargetDir(hwnd, FALSE);
     2397        SetTargetDir(hwnd, FALSE, NULL);
    23982398        break;
    23992399
Note: See TracChangeset for help on using the changeset viewer.