Ignore:
Timestamp:
Jul 13, 2017, 5:17:57 AM (8 years ago)
Author:
stevenhl
Message:

Import modifications from cwmm-0_2_9-work-01_10_2006.zip dated 2006-08-27

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/mediafolder/include/mediafolderinc.h

    r2 r4  
    3939/* Random play */
    4040#define FLAG_RANDOM            0x00000004
     41
     42/*** Private folder flags: ***/
     43/* Flag indicating from where a method was called */
     44#define MFLDR_CURACTION_ADDFOLDERVIEW3  0x00000001
     45/* Flag telling if folder is in compact view */
     46#define MFLDR_VIEW_COMPACT              0x00000002
     47/* The view is currently changing */
     48#define MFLDR_CHANGING_VIEW             0x00000004
     49/* Indicate, we are currently showing the cancellation message box to the user */
     50#define MFLDR_SHOWING_MBOX              0x00000008
     51/*** End of private folder flags ***/
     52
     53/* Timer for automatically dismissing the message box and closing a mediafolder
     54   when playing a media file. Used for enabling automatic shutdown. Otherwise
     55the shutdown would hang until the user clicks 'ok'. See cwClose() */
     56#define MFLDR_MBOX_TIMER_ID 100
     57/* The timer delay in ms. This can be set in the INI file. */
     58#define MFLDR_MBOX_TIMER_DELAY 60000
     59/* The allowed minimum for the timer delay in ms */
     60#define MFLDR_MBOX_MIN_TIMER_DELAY 5000
     61/* */
     62#define MFLDR_TIMER_DELAY_KEY "mfldrMBoxDisplayTime"
     63
     64#define IDHLP_MEDIAFOLDERMAIN  100
    4165
    4266/* Which display to show */
     
    112136
    113137/* Which track to start */
    114 #define PLAY_FIRST    1L
    115 #define PLAY_NEXT     2L
    116 #define PLAY_PREV     3L
    117 #define PAUSE_TRACK   4L
    118 #define STOP_TRACK    5L
    119 #define SEEK_TRACK    6L
     138#define PLAY_FIRST       1L
     139#define PLAY_NEXT        2L
     140#define PLAY_PREV        3L
     141#define PAUSE_TRACK      4L
     142#define STOP_TRACK       5L
     143#define SEEK_TRACK       6L
     144#define PLAY_NEXT_CDFLDR 7L /* CD folders need special handling because they're slow */
    120145
    121146/* The IDs for the playtime display */
Note: See TracChangeset for help on using the changeset viewer.