Ignore:
Timestamp:
12/25/06 23:45:24 (17 years ago)
Author:
r2d
Message:

added tag writing, but TagLib::FileRef::save() make all crash and I'm too lazy to debug

File:
1 edited

Legend:

Unmodified
Added
Removed
  • winamp-musepack/trunk/winamp-musepack/mpc_info.h

    r191 r192  
     1/*
     2        Copyright (C) 2006 Nicolas BOTTI <rududu at laposte.net>
     3        This file is part of the Musepack Winamp plugin.
     4
     5        This library is free software; you can redistribute it and/or
     6        modify it under the terms of the GNU Lesser General Public
     7        License as published by the Free Software Foundation; either
     8        version 2.1 of the License, or (at your option) any later version.
     9
     10        This library is distributed in the hope that it will be useful,
     11        but WITHOUT ANY WARRANTY; without even the implied warranty of
     12        MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     13        Lesser General Public License for more details.
     14
     15        You should have received a copy of the GNU Lesser General Public
     16        License along with this library; if not, write to the Free Software
     17        Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
     18*/
     19
    120#pragma once
    221
     
    827using namespace System::Drawing;
    928
     29class mpc_player;
    1030
    1131namespace winamp_musepack {
     
    2343        {
    2444        public:
    25                 mpc_info(void)
     45                mpc_info(mpc_player * init_player)
    2646                {
    2747                        InitializeComponent();
    28                         //
    29                         //TODO: Add the constructor code here
    30                         //
     48                        player = init_player;
    3149                }
    3250
     
    4260                        }
    4361                }
    44         private: System::Windows::Forms::GroupBox^  groupBox1;
    45         public: System::Windows::Forms::TextBox^  txtTrack;
    46         private:
    47 
    48         protected:
    49 
    50         private: System::Windows::Forms::Label^  label5;
    51         public: System::Windows::Forms::TextBox^  txtYear;
    52         private:
    53 
    54 
    55         private: System::Windows::Forms::Label^  label4;
    56         public: System::Windows::Forms::TextBox^  txtAlbum;
    57         private:
    58 
    59 
    60         private: System::Windows::Forms::Label^  label3;
    61         public: System::Windows::Forms::TextBox^  txtArtist;
    62         private:
    63 
    64 
    65         private: System::Windows::Forms::Label^  label2;
    66         public: System::Windows::Forms::TextBox^  txtTitle;
    67         private:
    68 
    69 
    70         private: System::Windows::Forms::Label^  label1;
    71         private: System::Windows::Forms::GroupBox^  groupBox2;
    72         public: System::Windows::Forms::TextBox^  txtComment;
    73         private:
    74 
    75 
    76         private: System::Windows::Forms::Label^  label6;
    77         private: System::Windows::Forms::Label^  label7;
    78         public: System::Windows::Forms::ComboBox^  comboGenre;
    79         private:
    80         public: System::Windows::Forms::Label^  lblStreamInfo;
     62        private:
     63        System::Windows::Forms::GroupBox^  groupBox1;
     64        System::Windows::Forms::Label^  label5;
     65        System::Windows::Forms::Label^  label4;
     66        System::Windows::Forms::Label^  label3;
     67        System::Windows::Forms::Label^  label2;
     68        System::Windows::Forms::Label^  label1;
     69        System::Windows::Forms::GroupBox^  groupBox2;
     70        System::Windows::Forms::Label^  label6;
     71        System::Windows::Forms::Label^  label7;
     72
     73
     74
     75
     76        mpc_player * player;
     77                         
     78        public:
     79        System::Windows::Forms::TextBox^  txtTrack;
     80        System::Windows::Forms::TextBox^  txtYear;
     81        System::Windows::Forms::TextBox^  txtAlbum;
     82        System::Windows::Forms::TextBox^  txtArtist;
     83        System::Windows::Forms::TextBox^  txtTitle;
     84        System::Windows::Forms::TextBox^  txtComment;
     85        System::Windows::Forms::ComboBox^  comboGenre;
     86        System::Windows::Forms::Label^  lblStreamInfo;
     87        private: System::Windows::Forms::Button^  btnUpdate;
     88        public:
     89        private: System::Windows::Forms::Button^  btnCancel;
    8190        private: System::Windows::Forms::Button^  btnReload;
    82         public:
    83 
    84         private: System::Windows::Forms::Button^  btnCancel;
    85         public:
    86 
    87         private: System::Windows::Forms::Button^  btnUpdate;
    88 
    89 
    90 
    91 
    9291
    9392        private:
     
    105104                {
    106105                        this->groupBox1 = (gcnew System::Windows::Forms::GroupBox());
     106                        this->btnUpdate = (gcnew System::Windows::Forms::Button());
     107                        this->btnCancel = (gcnew System::Windows::Forms::Button());
     108                        this->btnReload = (gcnew System::Windows::Forms::Button());
    107109                        this->label7 = (gcnew System::Windows::Forms::Label());
    108110                        this->comboGenre = (gcnew System::Windows::Forms::ComboBox());
     
    121123                        this->groupBox2 = (gcnew System::Windows::Forms::GroupBox());
    122124                        this->lblStreamInfo = (gcnew System::Windows::Forms::Label());
    123                         this->btnReload = (gcnew System::Windows::Forms::Button());
    124                         this->btnCancel = (gcnew System::Windows::Forms::Button());
    125                         this->btnUpdate = (gcnew System::Windows::Forms::Button());
    126125                        this->groupBox1->SuspendLayout();
    127126                        this->groupBox2->SuspendLayout();
     
    130129                        // groupBox1
    131130                        //
     131                        this->groupBox1->Controls->Add(this->btnUpdate);
     132                        this->groupBox1->Controls->Add(this->btnCancel);
     133                        this->groupBox1->Controls->Add(this->btnReload);
    132134                        this->groupBox1->Controls->Add(this->label7);
    133135                        this->groupBox1->Controls->Add(this->comboGenre);
     
    146148                        this->groupBox1->Location = System::Drawing::Point(12, 12);
    147149                        this->groupBox1->Name = L"groupBox1";
    148                         this->groupBox1->Size = System::Drawing::Size(354, 183);
     150                        this->groupBox1->Size = System::Drawing::Size(354, 212);
    149151                        this->groupBox1->TabIndex = 0;
    150152                        this->groupBox1->TabStop = false;
    151                         this->groupBox1->Text = L"Tag information";
     153                        this->groupBox1->Text = L"Tag";
     154                        //
     155                        // btnUpdate
     156                        //
     157                        this->btnUpdate->Location = System::Drawing::Point(6, 183);
     158                        this->btnUpdate->Name = L"btnUpdate";
     159                        this->btnUpdate->Size = System::Drawing::Size(84, 23);
     160                        this->btnUpdate->TabIndex = 16;
     161                        this->btnUpdate->Text = L"Update";
     162                        this->btnUpdate->UseVisualStyleBackColor = true;
     163                        this->btnUpdate->Click += gcnew System::EventHandler(this, &mpc_info::btnUpdate_Click);
     164                        //
     165                        // btnCancel
     166                        //
     167                        this->btnCancel->Location = System::Drawing::Point(135, 183);
     168                        this->btnCancel->Name = L"btnCancel";
     169                        this->btnCancel->Size = System::Drawing::Size(84, 23);
     170                        this->btnCancel->TabIndex = 15;
     171                        this->btnCancel->Text = L"Cancel";
     172                        this->btnCancel->UseVisualStyleBackColor = true;
     173                        this->btnCancel->Click += gcnew System::EventHandler(this, &mpc_info::btnCancel_Click);
     174                        //
     175                        // btnReload
     176                        //
     177                        this->btnReload->Location = System::Drawing::Point(264, 183);
     178                        this->btnReload->Name = L"btnReload";
     179                        this->btnReload->Size = System::Drawing::Size(84, 23);
     180                        this->btnReload->TabIndex = 14;
     181                        this->btnReload->Text = L"Reload";
     182                        this->btnReload->UseVisualStyleBackColor = true;
     183                        this->btnReload->Click += gcnew System::EventHandler(this, &mpc_info::btnReload_Click);
    152184                        //
    153185                        // label7
     
    280312                        this->groupBox2->TabIndex = 1;
    281313                        this->groupBox2->TabStop = false;
    282                         this->groupBox2->Text = L"Stream information";
     314                        this->groupBox2->Text = L"Stream";
    283315                        //
    284316                        // lblStreamInfo
     
    291323                        this->lblStreamInfo->Text = L"lblStreamInfo";
    292324                        //
    293                         // btnReload
    294                         //
    295                         this->btnReload->Location = System::Drawing::Point(282, 201);
    296                         this->btnReload->Name = L"btnReload";
    297                         this->btnReload->Size = System::Drawing::Size(84, 23);
    298                         this->btnReload->TabIndex = 2;
    299                         this->btnReload->Text = L"Reload";
    300                         this->btnReload->UseVisualStyleBackColor = true;
    301                         //
    302                         // btnCancel
    303                         //
    304                         this->btnCancel->Location = System::Drawing::Point(147, 201);
    305                         this->btnCancel->Name = L"btnCancel";
    306                         this->btnCancel->Size = System::Drawing::Size(84, 23);
    307                         this->btnCancel->TabIndex = 3;
    308                         this->btnCancel->Text = L"Cancel";
    309                         this->btnCancel->UseVisualStyleBackColor = true;
    310                         this->btnCancel->Click += gcnew System::EventHandler(this, &mpc_info::btnCancel_Click);
    311                         //
    312                         // btnUpdate
    313                         //
    314                         this->btnUpdate->Location = System::Drawing::Point(12, 201);
    315                         this->btnUpdate->Name = L"btnUpdate";
    316                         this->btnUpdate->Size = System::Drawing::Size(84, 23);
    317                         this->btnUpdate->TabIndex = 4;
    318                         this->btnUpdate->Text = L"Update";
    319                         this->btnUpdate->UseVisualStyleBackColor = true;
    320                         //
    321325                        // mpc_info
    322326                        //
     
    324328                        this->AutoScaleMode = System::Windows::Forms::AutoScaleMode::Font;
    325329                        this->ClientSize = System::Drawing::Size(534, 237);
    326                         this->Controls->Add(this->btnUpdate);
    327                         this->Controls->Add(this->btnCancel);
    328                         this->Controls->Add(this->btnReload);
    329330                        this->Controls->Add(this->groupBox2);
    330331                        this->Controls->Add(this->groupBox1);
     
    338339                }
    339340#pragma endregion
    340 private: System::Void btnCancel_Click(System::Object^  sender, System::EventArgs^  e) {
    341                          Close();
    342                  }
     341
     342        private :
     343        System::Void btnCancel_Click(System::Object^  sender, System::EventArgs^  e);
     344        System::Void btnReload_Click(System::Object^  sender, System::EventArgs^  e);
     345        System::Void btnUpdate_Click(System::Object^  sender, System::EventArgs^  e);
    343346};
    344347}
Note: See TracChangeset for help on using the changeset viewer.