mirror of
https://github.com/carlrobertoh/ProxyAI.git
synced 2026-05-10 20:30:24 +00:00
Reopen plugin's source code (1.10.8 → 2.0.5)
This commit is contained in:
parent
faf02a5c0a
commit
26a3e07360
231 changed files with 88014 additions and 4271 deletions
|
|
@ -0,0 +1,25 @@
|
|||
package ee.carlrobert.codegpt.toolwindow.chat;
|
||||
|
||||
import com.intellij.openapi.Disposable;
|
||||
import ee.carlrobert.codegpt.conversations.Conversation;
|
||||
import ee.carlrobert.codegpt.conversations.message.Message;
|
||||
import javax.swing.JPanel;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
public interface ChatToolWindowTabPanel extends Disposable {
|
||||
|
||||
JPanel getContent();
|
||||
|
||||
@Nullable Conversation getConversation();
|
||||
|
||||
void setConversation(@Nullable Conversation conversation);
|
||||
|
||||
void displayLandingView();
|
||||
|
||||
void displayConversation(Conversation conversation);
|
||||
|
||||
void startNewConversation(Message message);
|
||||
|
||||
void sendMessage(Message message);
|
||||
void requestFocusForTextArea();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue