diff --git a/PBE.res b/PBE.res new file mode 100644 index 0000000..25b0473 Binary files /dev/null and b/PBE.res differ diff --git a/PBE_U.ddp b/PBE_U.ddp new file mode 100644 index 0000000..4370276 Binary files /dev/null and b/PBE_U.ddp differ diff --git a/PBE_U.dfm b/PBE_U.dfm index 1bf6b8b..9a1ee14 100644 --- a/PBE_U.dfm +++ b/PBE_U.dfm @@ -1,6 +1,6 @@ object Form1: TForm1 - Left = 190 - Top = 105 + Left = 191 + Top = 106 Width = 818 Height = 656 BorderIcons = [biSystemMenu, biMinimize] @@ -334,6 +334,7 @@ object Form1: TForm1 Caption = 'New' Enabled = False TabOrder = 14 + OnClick = PB_NewButtonClick end object PB_DelButton: TButton Left = 272 @@ -343,6 +344,7 @@ object Form1: TForm1 Caption = 'Delete!' Enabled = False TabOrder = 15 + OnClick = PB_DelButtonClick end object PB_SaveButton: TButton Left = 376 @@ -677,7 +679,7 @@ object Form1: TForm1 Top = 8 Width = 313 Height = 21 - ItemHeight = 13 + ItemHeight = 0 TabOrder = 3 Text = 'SC_AvailSCs' end diff --git a/PBE_U.pas b/PBE_U.pas index 5504af2..9b0b8ae 100644 --- a/PBE_U.pas +++ b/PBE_U.pas @@ -126,6 +126,8 @@ type procedure DBG_ShowEntryClick(Sender: TObject); procedure Button_SaveClick(Sender: TObject); procedure Button_SaveAsClick(Sender: TObject); + procedure PB_DelButtonClick(Sender: TObject); + procedure PB_NewButtonClick(Sender: TObject); private { Private declarations } public @@ -140,6 +142,13 @@ type Company: String[30]; PhotoFile: String[255]; end; + TSMSEntry = record + PDUHeader: String[40]; + SMSC, PhoneNo: longint; + TStamp: TDateTime; + Sent: boolean; + Msg: String[160]; + end; TPBData = record Group: AnsiString; Name: AnsiString; @@ -776,4 +785,14 @@ begin FileName.SetFocus; end; +procedure TForm1.PB_DelButtonClick(Sender: TObject); +begin + // Delete phonebook entry +end; + +procedure TForm1.PB_NewButtonClick(Sender: TObject); +begin + // Add new phonebook entry +end; + end. diff --git a/PBE_ss.png b/PBE_ss.png new file mode 100644 index 0000000..7ed8305 Binary files /dev/null and b/PBE_ss.png differ diff --git a/README.md b/README.md new file mode 100644 index 0000000..5d2b869 --- /dev/null +++ b/README.md @@ -0,0 +1,8 @@ +PhoneBackup Editor +================== + +A tool to view the contents of backups made with PhoneBackup (from christersson.org). + +Editing features were planned, but the evolution of phones was faster. + +![](PBE_ss.png)