about summary refs log tree commit diff stats
path: root/profrc.example
Commit message (Expand)AuthorAgeFilesLines
* Added example profrc configJames Booth2014-06-291-0/+58
t;sir@cmpwn.com> 2020-05-28 10:32:32 -0400 Revert "Remove duration from the status methods"' href='/akspecs/aerc/commit/widgets/tabhost.go?id=76a91813d8dc0f0011202f8120fc197097f022aa'>76a9181 ^
589db74 ^
4bdef7d ^
589db74 ^
905cb9d ^
76a9181 ^
905cb9d ^

152f8c9 ^
589db74 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

               



              
                        
                                  
                                               
                                           
                                                                    

                                               
              
 
package widgets

import (
	"time"
)

type TabHost interface {
	BeginExCommand(cmd string)
	SetStatus(status string) *StatusMessage
	SetError(err string) *StatusMessage
	PushStatus(text string, expiry time.Duration) *StatusMessage
	PushError(text string) *StatusMessage
	PushSuccess(text string) *StatusMessage
	Beep()
}