Show
Ignore:
Timestamp:
03/08/12 23:19:12 (15 months ago)
Author:
bayral
Message:

new project for windows live publish plugin
Well advance single uploader

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • extensions/PiwigoLib/PiwigoUpload/DTO/ModelManager.cs

    r12407 r13520  
    7272            } 
    7373 
     74            public System.Windows.Forms.TreeNode SelectedNode { get; set; } 
     75 
    7476            private LocalAlbum _AlbumEdited; 
    7577            public LocalAlbum AlbumEdited {  
     
    148150                }  
    149151            } 
     152 
     153            private PwgUploadOption _uploadOption; 
     154            public PwgUploadOption UploadOption 
     155            {  
     156                get { 
     157                    return _uploadOption; 
     158                } 
     159                set { 
     160                    _uploadOption = value; 
     161                    OnPropertyChanged("UploadOption");  
     162                }  
     163            } 
     164 
     165            private List<KeyValuePair<PwgConfidentLevelEnum, String>> _lstConfidentLevel; 
     166            public List<KeyValuePair<PwgConfidentLevelEnum, String>> LstConfidentLevel 
     167            { 
     168                get 
     169                { 
     170                    return _lstConfidentLevel; 
     171                } 
     172                set 
     173                { 
     174                    _lstConfidentLevel = value; 
     175                    OnPropertyChanged("LstConfidentLevel");  
     176                } 
     177            } 
     178 
    150179 
    151180            public ModelManagerBase() 
     
    157186                AlbumEdited = new LocalAlbum(); 
    158187                ImageEdited = new LocalImage(); 
     188                UploadOption = new PwgUploadOption(); 
     189 
     190                LstConfidentLevel = Com.Piwigo.Lib.DTO.Helper.PwgEnumHelper<PwgConfidentLevelEnum>.buildChoiceList(); 
    159191            } 
    160192 
     
    178210                    PropertyChanged(this, new PropertyChangedEventArgs(info)); 
    179211            } 
     212 
    180213        } 
    181214    }