about summary refs log blame commit diff stats
path: root/p9c/pixel/grid.c
blob: c0438c1629b6e1dfac8ce197077127327d64b2b3 (plain) (tree)
















































                                                                                                                              
#include <u.h>
#include <libc.h>
#include <draw.h>
#include <event.h>

Image *back;  // Background image for drawing
int gridsize = 16;  // Size of each grid cell
int gridwidth = 10;  // Number of grid columns
int gridheight = 10;  // Number of grid rows
Mouse mouse;

void drawgrid(void) {
    int x, y;
    for (x = 0; x <= gridwidth; x++) {
        line(back, Pt(x * gridsize, 0), Pt(x * gridsize, gridheight * gridsize), Endsquare, Endsquare, 0, display->black, ZP);
    }
    for (y = 0; y <= gridheight; y++) {
        line(back, Pt(0, y * gridsize), Pt(gridwidth * gridsize, y * gridsize), Endsquare, Endsquare, 0, display->black, ZP);
    }
}

void fillcell(int x, int y, ulong color) {
    Rectangle r = Rect(x * gridsize, y * gridsize, (x + 1) * gridsize, (y + 1) * gridsize);
    draw(back, r, display->black, nil, ZP);
    flushimage(display, 1);
}

void main(void) {
    if (initdraw(0, 0, "Pixel Art Tool") < 0)
        sysfatal("initdraw failed: %r");

    back = screen;
    drawgrid(); // Draw the initial grid
    flushimage(display, 1);

    for (;;) {
        mouse = emouse();  // Fetch mouse event

        if (mouse.buttons & 1) {  // Left mouse button clicked
            int cellx = mouse.xy.x / gridsize;
            int celly = mouse.xy.y / gridsize;
            fillcell(cellx, celly, display->black->chan);  // Fill the clicked cell
        }

        if (ekbd() == 'q') {  // Check for 'q' key press to exit
            exits(0);
        }
    }
}
me/commands/account/reply.go?id=2b3e123cb86f9b4c5853e31d9e76c2b0d083f90a'>^
c610c3c ^
475b697 ^
38e7165 ^


475b697 ^
38e7165 ^
475b697 ^
38e7165 ^
c610c3c ^
38e7165 ^
c610c3c ^
38e7165 ^
c610c3c ^
38e7165 ^
475b697 ^
38e7165 ^

c610c3c ^
38e7165 ^

c610c3c ^
37fc4d9 ^
38e7165 ^

c610c3c ^
ce0d0e8 ^
ce0d0e8 ^
475b697 ^

7f97e0b ^
282dc44 ^
217e885 ^
7f97e0b ^
217e885 ^
7f97e0b ^
475b697 ^
67fb093 ^





bf28e23 ^
67fb093 ^
3ba69ed ^

bf28e23 ^

3ba69ed ^
38e7165 ^
3ba69ed ^
bf28e23 ^
3ba69ed ^







475b697 ^
8be59ca ^
67fb093 ^
8be59ca ^






3ba69ed ^

8be59ca ^
475b697 ^
217e885 ^
3ba69ed ^

217e885 ^

9096049 ^
3ba69ed ^
9096049 ^
bf28e23 ^
d238272 ^










8be59ca ^

3ba69ed ^
8be59ca ^
3ba69ed ^
8be59ca ^
475b697 ^
cf50b98 ^
9096049 ^
c610c3c ^

cf50b98 ^


3c3bc51 ^

cf50b98 ^

3c3bc51 ^
1894a7e ^
cf50b98 ^






1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
           

        
               

                
            
                         

                 
                                    
 
                                         
                                          

 

                   
             


                         
                                 
                                

 
                                                                   
                  

 
                                                               
                                                         


                          
                                
                                                                     
         


                             
                               






                                       

                                            

                 
 

                                                              
 


                                                        

                                               
                               


                                                                                  



                                            




                                                                            
                                        
         


                                                     
                        
                                                  
                 
                                             
                                            
                                                                         
                                                                            
                                
                                                                                                
                         
                 

                                                              
                                                              

                                                              
                                                                                        
                                                                                            

                                                
                                                              
                         
                 

         
                          
                                                                              
                                                       
                
                                              
         
 





                                                      
                                         
 

                                   

                                                                                              
                 
 
                                                                         
                                                                                          







                                                               
 
                                                     
                                                                         






                                                      

                          
         
 
                  

                                                                      

                 
                                                                                                  
                                                
                                            
                                                    










                                                                                                  

                                
                          
                
                               
         
 
 
                             

                                                    


                                        

                                                                      

                                        
                                                                  
                                                                                






                                                 
package msg

import (
	"bytes"
	"errors"
	"fmt"
	"io"
	gomail "net/mail"
	"strings"

	"git.sr.ht/~sircmpwn/getopt"

	"git.sr.ht/~sircmpwn/aerc/models"
	"git.sr.ht/~sircmpwn/aerc/widgets"
)

type reply struct{}

func init() {
	register(reply{})
}

func (reply) Aliases() []string {
	return []string{"reply"}
}

func (reply) Complete(aerc *widgets.Aerc, args []string) []string {
	return nil
}

func (reply) Execute(aerc *widgets.Aerc, args []string) error {
	opts, optind, err := getopt.Getopts(args, "aqT:")
	if err != nil {
		return err
	}
	if optind != len(args) {
		return errors.New("Usage: reply [-aq -T <template>]")
	}
	var (
		quote    bool
		replyAll bool
		template string
	)
	for _, opt := range opts {
		switch opt.Option {
		case 'a':
			replyAll = true
		case 'q':
			quote = true
		case 'T':
			template = opt.Value
		}
	}

	widget := aerc.SelectedTab().(widgets.ProvidesMessage)
	acct := widget.SelectedAccount()

	if acct == nil {
		return errors.New("No account selected")
	}
	conf := acct.AccountConfig()
	us, _ := gomail.ParseAddress(conf.From)
	store := widget.Store()
	if store == nil {
		return errors.New("Cannot perform action. Messages still loading")
	}
	msg, err := widget.SelectedMessage()
	if err != nil {
		return err
	}
	acct.Logger().Println("Replying to email " + msg.Envelope.MessageId)

	var (
		to     []string
		cc     []string
		toList []*models.Address
	)
	if args[0] == "reply" {
		if len(msg.Envelope.ReplyTo) != 0 {
			toList = msg.Envelope.ReplyTo
		} else {
			toList = msg.Envelope.From
		}
		for _, addr := range toList {
			if addr.Name != "" {
				to = append(to, fmt.Sprintf("%s <%s@%s>",
					addr.Name, addr.Mailbox, addr.Host))
			} else {
				to = append(to, fmt.Sprintf("<%s@%s>", addr.Mailbox, addr.Host))
			}
		}
		if replyAll {
			for _, addr := range msg.Envelope.Cc {
				cc = append(cc, addr.Format())
			}
			for _, addr := range msg.Envelope.To {
				address := fmt.Sprintf("%s@%s", addr.Mailbox, addr.Host)
				if strings.ToLower(address) == strings.ToLower(us.Address) {
					continue
				}
				to = append(to, addr.Format())
			}
		}
	}

	var subject string
	if !strings.HasPrefix(strings.ToLower(msg.Envelope.Subject), "re: ") {
		subject = "Re: " + msg.Envelope.Subject
	} else {
		subject = msg.Envelope.Subject
	}

	defaults := map[string]string{
		"To":          strings.Join(to, ", "),
		"Cc":          strings.Join(cc, ", "),
		"Subject":     subject,
		"In-Reply-To": msg.Envelope.MessageId,
	}
	original := models.OriginalMail{}

	addTab := func() error {
		if template != "" {
			original.From = models.FormatAddresses(msg.Envelope.From)
			original.Date = msg.Envelope.Date.Format("Mon Jan 2, 2006 at 3:04 PM")
		}

		composer, err := widgets.NewComposer(aerc, aerc.Config(),
			acct.AccountConfig(), acct.Worker(), template, defaults, original)
		if err != nil {
			aerc.PushError("Error: " + err.Error())
			return err
		}

		if args[0] == "reply" {
			composer.FocusTerminal()
		}

		tab := aerc.NewTab(composer, subject)
		composer.OnHeaderChange("Subject", func(subject string) {
			if subject == "" {
				tab.Name = "New email"
			} else {
				tab.Name = subject
			}
			tab.Content.Invalidate()
		})

		return nil
	}

	if quote {
		if template == "" {
			template = aerc.Config().Templates.QuotedReply
		}

		store.FetchBodyPart(msg.Uid, msg.BodyStructure, []int{1}, func(reader io.Reader) {
			buf := new(bytes.Buffer)
			buf.ReadFrom(reader)
			original.Text = buf.String()
			if len(msg.BodyStructure.Parts) == 0 {
				original.MIMEType = fmt.Sprintf("%s/%s",
					msg.BodyStructure.MIMEType, msg.BodyStructure.MIMESubType)
			} else {
				// TODO: still will be "multipart/mixed" for mixed mails with
				// attachments, fix this after aerc could handle responding to
				// such mails
				original.MIMEType = fmt.Sprintf("%s/%s",
					msg.BodyStructure.Parts[0].MIMEType,
					msg.BodyStructure.Parts[0].MIMESubType)
			}
			addTab()
		})
		return nil
	} else {
		return addTab()
	}
}

//TODO (RPB): unused function
func findPlaintext(bs *models.BodyStructure,
	path []int) (*models.BodyStructure, []int) {

	for i, part := range bs.Parts {
		cur := append(path, i+1)
		if strings.ToLower(part.MIMEType) == "text" &&
			strings.ToLower(part.MIMESubType) == "plain" {
			return part, cur
		}
		if strings.ToLower(part.MIMEType) == "multipart" {
			if part, path := findPlaintext(part, cur); path != nil {
				return part, path
			}
		}
	}

	return nil, nil
}