Exemple #1
0
        /// <summary>
        /// Initialization of the package; this method is called right after the package is sited, so this is the place
        /// where you can put all the initialization code that rely on services provided by VisualStudio.
        /// </summary>
        protected override void Initialize()
        {
            base.Initialize();

            m_packageDTEEvents = ApplicationObject.Events.DTEEvents;
            m_packageDTEEvents.OnBeginShutdown   += SpotifyRemoteDTEEventBeginShutdown;
            m_packageDTEEvents.OnStartupComplete += SpotifyRemoteDTEEventOnStartupComplete;

            SettingsManager sm = SettingsManager.GetSettingsManager();

            CommandOpenSpotify.Initialize(this);
            CommandNextTrack.Initialize(this);
            CommandPlayPause.Initialize(this);
            CommandPreviousTrack.Initialize(this);
            SpotifyRemoteSettingsCommand.Initialize(this);
            CommandOpenSettings.Initialize(this);

            sm.ReadSettingsFromFile();
            sm.ApplyCurrentSettings();

            m_spotifyManager.Initialize();
        }
 public void SetCmdOpenSpotify(ref CommandOpenSpotify commandOpenSpotify)
 {
     m_cmdOpenSpotify = commandOpenSpotify;
 }